TIF_E41201544/resources/views/admin/histories/index.blade.php

78 lines
3.6 KiB
PHP

@extends('layouts.master')
@section('title', 'Histories Datas')
@section('styles')
<!-- DataTables -->
<link href="{{ asset('assets/libs/datatables.net-bs5/css/dataTables.bootstrap5.min.css') }}" rel="stylesheet" type="text/css" />
<!-- Responsive datatable examples -->
<link href="{{ asset('assets/libs/datatables.net-responsive-bs5/css/responsive.bootstrap5.min.css') }}" rel="stylesheet" type="text/css" />
@endsection
@section('content')
<div class="page-content">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="page-title-box d-flex align-items-center justify-content-between">
<h4 class="mb-sm-0">History</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="javascript: void(0);">Master</a></li>
<li class="breadcrumb-item active">History</li>
</ol>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">History Data</h4>
</div>
<div class="card-body">
<table id="datatable" class="table table-hover align-middle table-bordered dt-responsive nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;">
<thead>
<tr>
<th width="10px" class="text-center">#</th>
<th>Name</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->user->name }}</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> <!-- end col -->
</div>
</div>
</div>
@endsection
@section('scripts')
<!-- Required datatable js -->
<script src="{{ asset('assets/libs/datatables.net/js/jquery.dataTables.min.js') }}"></script>
<script src="{{ asset('assets/libs/datatables.net-bs5/js/dataTables.bootstrap5.min.js') }}"></script>
<!-- Responsive examples -->
<script src="{{ asset('assets/libs/datatables.net-responsive/js/dataTables.responsive.min.js') }}"></script>
<script src="{{ asset('assets/libs/datatables.net-responsive-bs5/js/responsive.bootstrap5.min.js') }}"></script>
<script>
$(function () {
$('#datatable').DataTable();
});
</script>
@endsection