2014-07-25 00:17:56 -05:00
|
|
|
@extends('layouts.default')
|
|
|
|
@section('content')
|
2014-08-02 00:34:38 -05:00
|
|
|
|
2014-08-23 03:01:40 -05:00
|
|
|
|
|
|
|
@if($filtered === true)
|
|
|
|
<p class="bg-primary" style="padding:15px;">
|
|
|
|
This view is filtered to show only the transactions between
|
|
|
|
{{$filters['start']->format('M jS, Y')}} and {{$filters['end']->format('M jS, Y')}}.
|
|
|
|
</p>
|
|
|
|
<p class="bg-info" style="padding:15px;">
|
|
|
|
<a href="{{route('transactions.index')}}" class="text-info">Reset the filter.</a>
|
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
2014-08-02 00:34:38 -05:00
|
|
|
@include('paginated.transactions')
|
|
|
|
|
2014-07-25 00:17:56 -05:00
|
|
|
|
|
|
|
@stop
|
|
|
|
|