TIF_E41201544/resources/views/user/history.blade.php

65 lines
3.0 KiB
PHP

@extends('layouts.masteruser')
@section('title', 'Histories Datas')
@section('styles')
<!-- DataTables -->
<link href="{{ asset('assets/vendors/datatables.net-bs5/css/dataTables.bootstrap5.min.css') }}" rel="stylesheet" type="text/css" />
<!-- Responsive datatable examples -->
<link href="{{ asset('assets/vendors/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css') }}" rel="stylesheet" type="text/css" />
@endsection
@section('content')
<div class="page-content">
<nav class="page-breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">Master</a></li>
<li class="breadcrumb-item active" aria-current="page">History</li>
</ol>
</nav>
<div class="row">
<div class="col-md-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
<h4 class="card-title">History Data</h4>
<div class="table-responsive">
<table id="datatable" class="table align-middle">
<thead>
<tr>
<th width="10px" class="text-center">#</th>
<th>Addiction</th>
<th>Result</th>
<th>Date Time</th>
</tr>
</thead>
<tbody>
@foreach ($histories as $history)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $history->addiction->name }}</td>
<td>{{ $history->result }}%</td>
<td>{{ $history->created_at->format('d-m-Y H:i:s') }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div> <!-- end col -->
</div>
</div>
@endsection
@section('scripts')
<!-- Required datatable js -->
<script src="{{ asset('assets/vendors/datatables.net/js/jquery.dataTables.min.js') }}"></script>
<script src="{{ asset('assets/vendors/datatables.net-bs5/js/dataTables.bootstrap5.min.js') }}"></script>
<!-- Responsive examples -->
<script src="{{ asset('assets/vendors/datatables.net-responsive/js/dataTables.responsive.min.js') }}"></script>
<script src="{{ asset('assets/vendors/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js') }}"></script>
<script>
$(function () {
$('#datatable').DataTable();
});
</script>
@endsection