diff --git a/Resources/views/audit/_table.blade.php b/Resources/views/audit/_table.blade.php index 28ae626..99874b9 100644 --- a/Resources/views/audit/_table.blade.php +++ b/Resources/views/audit/_table.blade.php @@ -3,6 +3,11 @@ {{-- Inject Scripts --}} -@section('scripts') +@push('scripts') {{ $dataTable->scripts() }} -@endsection + +@endpush diff --git a/Resources/views/audit/index.blade.php b/Resources/views/audit/index.blade.php index 1759fbb..4bf0c82 100644 --- a/Resources/views/audit/index.blade.php +++ b/Resources/views/audit/index.blade.php @@ -1,7 +1,29 @@ + @section('title') + Audit Logs + @endsection + + @section('breadcrumbs') + {{Breadcrumbs::render('logs.audit') }} + @endsection
+ +
+ +
+ +
+ {!! getIcon('magnifier','fs-3 position-absolute ms-5') !!} + +
+ +
+ +
+ +
@include('logs::audit._table') diff --git a/Resources/views/system/_table.blade.php b/Resources/views/system/_table.blade.php index 28ae626..dd41837 100644 --- a/Resources/views/system/_table.blade.php +++ b/Resources/views/system/_table.blade.php @@ -3,6 +3,11 @@ {{-- Inject Scripts --}} -@section('scripts') +@push('scripts') {{ $dataTable->scripts() }} -@endsection + +@endpush diff --git a/Resources/views/system/index.blade.php b/Resources/views/system/index.blade.php index cf952c5..6c7e0a0 100644 --- a/Resources/views/system/index.blade.php +++ b/Resources/views/system/index.blade.php @@ -1,7 +1,29 @@ + @section('title') + System Logs + @endsection + + @section('breadcrumbs') + {{ Breadcrumbs::render('logs.system') }} + @endsection
+ +
+ +
+ +
+ {!! getIcon('magnifier','fs-3 position-absolute ms-5') !!} + +
+ +
+ +
+ +
@include('logs::system._table')