@extends('admin.frest_admin.page_layout') @section('title') {{ $page_name }} - @parent @endsection @push('style') {{-- vendor css --}} {{-- theme css --}} {{-- after bootstrap --}} {{-- --}} {{-- --}} {{-- --}} {{-- page css --}} {{-- custom css --}} @endpush @push('style-after-global') @include('admin.frest_admin.datatables.style') @endpush @section('body-attribute') class="horizontal-layout horizontal-menu navbar-sticky 2-columns footer-static" data-open="hover" data-menu="horizontal-menu" data-col="2-columns" @endsection @section('body') {{-- header --}} @component('admin.frest_admin.header_component', [ 'user_name' => $user_name, 'user_photo_path' => '', ]) {{-- slot --}} @endcomponent {{-- main menu --}} @component('admin.frest_admin.main_menu_component', [ 'page_name' => $page_name, ]) {{-- slot --}} @endcomponent
{{-- table --}}
@component('admin.case_divorce_component.table_component', [ // table config here ]) {{-- slot --}} @endcomponent
{{-- update --}} @component('admin.case_divorce_component.update_modal_component', [ // modal config here 'case_divorce_component' => $case_divorce_component, ]) {{-- slot --}} @endcomponent @endsection @push('script') {{-- Vendor JS --}} {{-- Page Vendor JS --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- Theme JS --}} {{-- Page JS --}} @endpush @prepend('script-after-global') @include('admin.local_storage.script') @include('admin.frest_admin.datatables.script') @endprepend