Files
backend_parkir/resources/views/report/stiker/stiker-harian.blade.php
2026-01-31 14:23:04 +07:00

62 lines
2.8 KiB
PHP

@extends('layouts.master')
@section('styles')
<style>
.table th {
text-align: center;
}
</style>
@endsection
@section('content')
<!-- partial -->
<div class="container-fluid page-body-wrapper">
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-md-12 grid-margin stretch-card">
<div class="card">
<div class="card-body" id="cetak">
<h4 class="card-title">Laporan Stiker Harian</h4>
<form id="formTanggal">
<div class="form-group">
<div class="row">
<div class="col-sm-3">
<label for="tanggalMulai">Tanggal pencarian</label>
</div>
<div class="col-sm-3">
<input type="date" class="form-control" id="tanggalCari" name="tanggal_mulai" required>
</div>
</div>
</div>
</form>
<div class="table-bordered">
<table class="table">
<thead>
<tr>
<th>No.</th>
<th>No. Transaksi</th>
<th>Tanggal</th>
<th>Nama</th>
<th>Alamat</th>
<th>Telp</th>
<th>Jenis Trans</th>
<th>No. Polisi</th>
<th>Jenis Kend</th>
<th>Petugas</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection