MIF_E31210063/MaidMatching/resources/views/dashboard/maids.blade.php

48 lines
1.4 KiB
PHP

@extends('app.dashboard')
@section('title', 'Maid')
@include('dashboard.js.maids')
@section('content')
<div class="container-xxl flex-grow-1 container-p-y">
<h4 class="fw-bold py-3 mb-4"><span class="text-muted fw-light">Data / Users /</span> Maid</h4>
<!-- Bordered Table -->
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
<h4 class="m-0">Maid List</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="table-responsive text-wrap">
<table class="table">
<thead>
<tr>
<th width="5%">No.</th>
<th>Image</th>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th>Address</th>
<th>Birthdate</th>
<th>Gender</th>
<th>Last Education</th>
<th>Additional Skill</th>
<th>Desired Salary</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<!--/ Bordered Table -->
</div>
@endsection