pos-gis/resources/views/content/management_content/audit_trail/index.blade.php
2024-10-07 13:13:42 +07:00

30 lines
981 B
PHP

@section('content')
<div class="d-flex flex-column-fluid">
<div class="container-fluid">
<div class="row mt-4">
<div class="col-md-12">
<x-card.content title="{{$title}}" subTitle="Table {{$title}}">
<x-slot name="toolbar">
</x-slot>
<x-slot name="content">
<table class="table table-separate table-head-custom table-checkable" id="indexTable">
<thead>
@foreach($tableHead as $item)
<th class="{{$item[1]}}">{{$item[0]}}</th>
@endforeach
</thead>
</table>
</x-slot>
</x-card.content>
</div>
</div>
</div>
</div>
@include('content.management_content.audit_trail.action')
@endsection