2018-08-06 12:30:51 +00:00
|
|
|
@extends('layouts.app')
|
2015-07-19 06:49:24 +00:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
<h1 class="title">Histori</h1>
|
2015-07-19 06:49:24 +00:00
|
|
|
|
|
|
|
<div class="col-md-8">
|
|
|
|
|
|
|
|
<table class="table table-striped table-bordered">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
|
|
<th>Student</th>
|
|
|
|
<th>Book</th>
|
|
|
|
<th>Borrowed At</th>
|
|
|
|
<th>Returned At</th>
|
|
|
|
<th>Fines</th>
|
|
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
@foreach($transactions as $transaction)
|
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ $transaction->student->last_name }}</td>
|
2015-07-19 06:49:24 +00:00
|
|
|
<td>{{ $transaction->book->title }}</td>
|
|
|
|
<td>{{ date('d-M-y', $transaction->borrowed_at) }}</td>
|
|
|
|
<td>{{ date('d-M-y', $transaction->returned_at) }}</td>
|
|
|
|
<td>{{ $transaction->fines }}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|