chess/resources/views/content/projects/mng_meeting.blade.php

45 lines
2.0 KiB
PHP
Raw Normal View History

2024-08-29 03:56:32 +00:00
@section('content')
{{-- <x-other.titleHeader judul="{{$title}}" /> --}}
<div class="row mt-4">
<div class="col-md-12">
<x-card.content title="Management Meeting" subTitle="">
<x-slot name="toolbar">
<button type="button" onclick="loadContent('detailProjects?id={{ $id_project }}&team_role_id={{ $team_role_id }}', this, event)" class="btn btn-danger mr-3">
<i class="la la-backward mr-2"></i>Kembali
</button>
<button type="button" class="btn btn-success mr-3" onclick="clearModalForm();znModal('mFormMeeting')">
<i class="la la-plus mr-2"></i>Create Meeting
</button>
</x-slot>
<x-slot name="content">
<div class="row">
</div>
<div class="table-responsive">
<table class="table table table-sm table-hover" id="indexTable">
<thead>
<tr>
<th>Meeting ID</th>
<th>Judul</th>
<th>Tanggal</th>
<th>Jam Mulai</th>
<th>Jam Selesai</th>
<th>Status Meeting</th>
<th>Act</th>
</tr>
</thead>
</table>
</div>
</x-slot>
</x-card.content>
</div>
</div>
@include('content.projects.form_meeting')
@include('content.projects.form_update_meeting')
@include('content.projects.form_det_meeting')
@include('content.projects.personil_meeting')
@endsection
@section('script')
@include('content.projects.action_meeting')
@endsection