48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
@extends('app.dashboard')
|
|
@section('title', 'Job')
|
|
|
|
@include('dashboard.js.job')
|
|
|
|
@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 /</span> Job</h4>
|
|
<!-- Bordered Table -->
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<h4 class="m-0">Job 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>Name</th>
|
|
<th>Description</th>
|
|
<th>Accommodation</th>
|
|
<th>Working Days</th>
|
|
<th>Working Hours</th>
|
|
<th>Salary</th>
|
|
<th>Address</th>
|
|
<th>Recommended Age</th>
|
|
<th>Skills</th>
|
|
<th>Applicant</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--/ Bordered Table -->
|
|
</div>
|
|
|
|
@endsection
|