35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
@extends('layouts.layoutMaster')
|
|
|
|
@section('title', 'Worklist')
|
|
|
|
@section('vendor-style')
|
|
@vite([
|
|
'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss',
|
|
'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss',
|
|
'resources/assets/vendor/libs/datatables-checkboxes-jquery/datatables.checkboxes.scss',
|
|
'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss'
|
|
])
|
|
@endsection
|
|
|
|
@section('vendor-script')
|
|
@vite([
|
|
'resources/assets/vendor/libs/moment/moment.js',
|
|
'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js'
|
|
])
|
|
@endsection
|
|
|
|
@section('page-script')
|
|
{{ $dataTable->scripts(attributes: ['type' => 'module']) }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header">Manage Users</div>
|
|
<div class="card-body">
|
|
{{ $dataTable->table() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|