resolved conflicts

This commit is contained in:
2025-03-31 03:46:05 +03:00
6454 changed files with 1520539 additions and 9 deletions
@@ -0,0 +1,43 @@
@extends('layouts.main')
@section('content')
<div class="row bg-title">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
<h4 class="page-title">{{ __('person_titles.add_person_title') }}</h4>
</div>
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
<ol class="breadcrumb">
<li><a href="{{ route('home') }}">{{ __('person_titles.dashboard') }}</a></li>
<li><a href="/person_titles">{{ __('person_titles.person_titles') }}</a></li>
<li class="active">{{ __('person_titles.create') }}</li>
</ol>
</div>
</div>
@include('insurance::person_titles.menu')
<div class="row">
<div class="col-sm-12">
<!--Flash messages at the top -->
@include('flash::message')
<div class="white-box">
{{ Form::open(['route' => 'person_titles.store', 'data-toggle' => 'validator']) }}
<div class="form-group">
{{ Form::label('name',__('person_titles.title'))}}
{{ Form::text('name','',['class' => 'form-control compulsory', 'required', 'placeholder'=>'e.g. Mrs']) }}
<div class="help-block with-errors"></div>
</div>
{{ Form::button(__('person_titles.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }}
{{ Form::button(__('person_titles.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }}
{{ Form::close() }}
</div>
</div>
</div>
@endsection
@push('scripts')
<script src="{{ asset('elite/js/validator.js') }}"></script>
@endpush
@@ -0,0 +1,44 @@
@extends('layouts.main')
@section('content')
<div class="row bg-title">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
<h4 class="page-title">{{ __('person_titles.edit_person_titles') }}</h4>
</div>
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
<ol class="breadcrumb">
<li><a href="{{ route('home') }}">{{ __('person_titles.dashboard') }}</a></li>
<li><a href="/person_titles">{{ __('person_titles.countries') }}</a></li>
<li class="active">{{ __('person_titles.edit') }}</li>
</ol>
</div>
</div>
@include('insurance::person_titles.menu')
<div class="row">
<div class="col-sm-12">
<!--Flash messages at the top -->
@include('flash::message')
<div class="white-box">
{{ Form::model($person_title, ['method' => 'PUT', 'route' => ['person_titles.update',$person_title], 'data-toggle' => 'validator']) }}
<div class="form-group">
{{ Form::hidden('id', $person_title->id) }}
{{ Form::label('name', __('person_titles.title')) }}
{{ Form::text('name', $person_title->name, ['class' => 'form-control compulsory', 'required', 'placeholder'=>'e.g. Mrs']) }}
<div class="help-block with-errors"></div>
</div>
{{ Form::button(__('person_titles.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }}
{{ Form::button(__('person_titles.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }}
{{ Form::close() }}
</div>
</div>
</div>
@endsection
@push('scripts')
<script src="{{ asset('elite/js/validator.js') }}"></script>
@endpush
@@ -0,0 +1,84 @@
@extends('layouts.main')
@push('styles')
<link href="{{ asset('/elite/bower_components/datatables/jquery.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('elite/tables/css/buttons.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
@endpush
@section('content')
<div class="row bg-title">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
<h4 class="page-title">{{ __('person_titles.activate_person_titles') }}</h4>
</div>
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
<ol class="breadcrumb">
<li><a href="{{ route('home') }}">{{ __('person_titles.dashboard') }}</a></li>
<li><a href="/person_titles">{{ __('person_titles.person_titles') }}</a></li>
<li class="active">{{ __('person_titles.activate') }}</li>
</ol>
</div>
</div>
@include('insurance::person_titles.menu')
<div class="row">
<div class="col-sm-12">
@include('flash::message')
<div class="white-box">
<p class="text-muted m-b-30">{{ __('person_titles.export_data') }}</p>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>{{ __('person_titles.title') }}</th>
<th></th>
</tr>
</thead>
<tfoot>
<tr>
<th>{{ __('person_titles.title') }}</th>
<th></th>
</tr>
<tbody>
@foreach($person_titles as $person_title)
<tr>
<td>{{ $person_title->name }}</td>
<td>
{{ Form::model($person_title->id ,['method' => 'POST', 'route' => ['person_titles.activate', $person_title->id]]) }}
<button type="submit" class="btn btn-warning" onclick="return confirm('Are you sure?')"><i class="fa fa-check"></i> {{ __('person_titles.activate') }}</button>
{{ Form::close() }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@push('scripts')
<script src="{{ asset('elite/bower_components/datatables/jquery.dataTables.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/dataTables.buttons.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/buttons.flash.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/jszip.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/pdfmake.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/vfs_fonts.js') }}"></script>
<script src="{{ asset('elite/tables/js/buttons.html5.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/buttons.print.min.js') }}"></script>
<script>
$('.table').DataTable({
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
]
});
</script>
@endpush
@@ -0,0 +1,88 @@
@extends('layouts.main')
@push('styles')
<link href="{{ asset('/elite/bower_components/datatables/jquery.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('elite/tables/css/buttons.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
@endpush
@section('content')
<div class="row bg-title">
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
<h4 class="page-title">{{ __('person_titles.person_titles') }}</h4>
</div>
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
<ol class="breadcrumb">
<li><a href="{{ route('home') }}">{{ __('person_titles.dashboard') }}</a></li>
<li><a href="{{ route('person_titles.index') }}">{{ __('person_titles.person_titles') }}</a></li>
<li class="active">{{ __('person_titles.view') }}</li>
</ol>
</div>
</div>
@include('insurance::person_titles.menu')
<div class="row">
<div class="col-sm-12">
@include('flash::message')
<div class="white-box">
<p class="text-muted m-b-30">{{ __('person_titles.export_data') }}</p>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>{{ __('person_titles.title') }}</th>
<th></th>
<th></th>
</tr>
</thead>
<tfoot>
<tr>
<th>{{ __('person_titles.title') }}</th>
<th></th>
<th></th>
</tr>
</tfoot>
<tbody>
@foreach($person_titles as $person_title)
<tr>
<td>{{ $person_title->name}}</td>
<td>
<a href="/person_titles/{{ $person_title->id }}/edit/" class="btn btn-info"><i class="fa fa-pencil"></i> {{ __('person_titles.edit') }}</a>
</td>
<td>
{{ Form::model($person_title->id ,['method' => 'DELETE', 'route' => ['person_titles.destroy', $person_title->id]]) }}
<button type="submit" class="btn btn-danger" onclick="return confirm('Are you sure?')"><i class="fa fa-trash"></i> {{ __('person_titles.delete') }}</button>
{{ Form::close() }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
@endsection
@push('scripts')
<script src="{{ asset('elite/bower_components/datatables/jquery.dataTables.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/dataTables.buttons.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/buttons.flash.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/jszip.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/pdfmake.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/vfs_fonts.js') }}"></script>
<script src="{{ asset('elite/tables/js/buttons.html5.min.js') }}"></script>
<script src="{{ asset('elite/tables/js/buttons.print.min.js') }}"></script>
<script>
$('.table').DataTable({
dom: 'Bfrtip',
pageLength: 50,
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
]
});
</script>
@endpush
@@ -0,0 +1,7 @@
<div class="panel panel-default">
<div class="panel-body">
<a href="{{ route('person_titles.create') }}" class="nav-item btn btn-default ti-plus"> {{ __('person_titles.add_person_title') }}</a>
<a href="{{ route('person_titles.index') }}" class="nav-item btn btn-default ti-pencil"> {{ __('person_titles.view_person_title') }}</a>
<a href="{{ route('person_titles.inactive') }}" class="nav-item btn btn-default ti-pencil"> {{ __('person_titles.activate_person_title') }}</a>
</div>
</div>