46 lines
1.9 KiB
PHP
46 lines
1.9 KiB
PHP
@section('content')
|
|
{{-- <x-other.titleHeader judul="{{$title}}" /> --}}
|
|
<div class="row mt-4">
|
|
<div class="col-md-12">
|
|
<x-card.content title="Laporan Helpdesk" subTitle="Table Laporan Helpdesk" classAdd="cardLaporan">
|
|
<x-slot name="toolbar">
|
|
{{-- <button type="button" onclick="cetakLaporan()" class="btn btn-danger mr-3">
|
|
<i class="la la-print mr-2"></i>Cetak Laporan
|
|
</button> --}}
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
</div>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table class="table table-borderless" id="indexTable">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Project Name</th>
|
|
<th>Task Code</th>
|
|
<th>Task Name</th>
|
|
<th>Task Note</th>
|
|
<th>status</th>
|
|
<th>Level Urgent</th>
|
|
<th>Created At</th>
|
|
<th>Act</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</x-slot>
|
|
</x-card.content>
|
|
</div>
|
|
</div>
|
|
@include('content.projects.formHelpdesk')
|
|
@include('content.projects.detail_dokumen')
|
|
@endsection
|
|
@section('script')
|
|
@include('content.projects.action_det_helpdesk')
|
|
@endsection
|
|
|