91 lines
2.7 KiB
PHP
91 lines
2.7 KiB
PHP
|
|
@extends('layouts.app')
|
||
|
|
|
||
|
|
@section('title')
|
||
|
|
Dashboard
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@section('admin-content')
|
||
|
|
<section class="content-header">
|
||
|
|
<div class="container-fluid">
|
||
|
|
<div class="row mb-2">
|
||
|
|
<div class="col-sm-6">
|
||
|
|
<h1>Forms Up Country</h1>
|
||
|
|
</div>
|
||
|
|
<div class="col-sm-6">
|
||
|
|
<ol class="breadcrumb float-sm-right">
|
||
|
|
<li class="breadcrumb-item"><a href="{{ route('dashboard.index') }}">Dashboard</a></li>
|
||
|
|
</li>
|
||
|
|
</ol>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
<section class="content">
|
||
|
|
<div class="container-fluid">
|
||
|
|
<div class="card card-primary card-outline">
|
||
|
|
<div class="card-body">
|
||
|
|
<h4 class="header-title float-left">List Data Forms Up Country Anda</h4>
|
||
|
|
<p class="float-right mb-2">
|
||
|
|
<a class="btn btn-primary text-white" href="">
|
||
|
|
Add New Expense Up Country
|
||
|
|
</a>
|
||
|
|
</p>
|
||
|
|
<div class="clearfix"></div>
|
||
|
|
<div class="dataTables_wrapper dt-bootstrap4 mt-2">
|
||
|
|
@include('backend.layouts.partials.messages')
|
||
|
|
<table id="dataTable"
|
||
|
|
class="table table-bordered table-striped table-head-fixed dataTable dtr-inline"
|
||
|
|
style="width:100%">
|
||
|
|
<thead class="bg-light text-capitalize">
|
||
|
|
<tr>
|
||
|
|
<th>#</th>
|
||
|
|
<th>Nama</th>
|
||
|
|
<th>Rayon</th>
|
||
|
|
<th>Tanggal</th>
|
||
|
|
<th>Tujuan</th>
|
||
|
|
<th>Jarak</th>
|
||
|
|
<th>Allowance</th>
|
||
|
|
<th>Transport Dalkot</th>
|
||
|
|
<th>Transport Ankot</th>
|
||
|
|
<th>Hotel</th>
|
||
|
|
<th>Bukti 1</th>
|
||
|
|
<th>Bukti 2</th>
|
||
|
|
<th>Bukti 3</th>
|
||
|
|
<th>Account Number</th>
|
||
|
|
<th>Aksi</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<tr>
|
||
|
|
<td>1</td>
|
||
|
|
<td>John Doe</td>
|
||
|
|
<td>Rayon 1</td>
|
||
|
|
<td>2021-09-01</td>
|
||
|
|
<td>Surabaya</td>
|
||
|
|
<td>100</td>
|
||
|
|
<td>100000</td>
|
||
|
|
<td>10000</td>
|
||
|
|
<td>5000</td>
|
||
|
|
<td>50000</td>
|
||
|
|
<td>file1.jpg</td>
|
||
|
|
<td>file2.jpg</td>
|
||
|
|
<td>file3.jpg</td>
|
||
|
|
<td>1234567890</td>
|
||
|
|
<td>
|
||
|
|
<a href="" class="btn btn-warning btn-sm">
|
||
|
|
<i class="fas fa-edit text-white"></i>
|
||
|
|
</a>
|
||
|
|
<a href="" class="btn btn-danger btn-sm">
|
||
|
|
<i class="fas fa-trash"></i>
|
||
|
|
</a>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
@endsection
|