46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
@extends('app.dashboard')
|
|
@section('title', 'Owner')
|
|
|
|
@include('dashboard.js.owners')
|
|
|
|
@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> Owner</h4>
|
|
<!-- Bordered Table -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<h4 class="m-0">Owner 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>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--/ Bordered Table -->
|
|
</div>
|
|
|
|
@endsection
|