2014-09-21 01:25:30 -05:00
|
|
|
@extends('layouts.default')
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 col-sm-12 col-md-12">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<i class="fa {{$subTitleIcon}}"></i> {{{$subTitle}}}
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<table id="transactionTable" class="table table-striped table-bordered" >
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th data-dynatable-column="amount">Amount (€)</th>
|
|
|
|
<th>From</th>
|
|
|
|
<th>To</th>
|
|
|
|
<th>ID</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@stop
|
|
|
|
@section('scripts')
|
|
|
|
<script type="text/javascript">
|
2014-09-21 03:55:51 -05:00
|
|
|
var URL = '{{route('json.'.$what)}}';
|
|
|
|
var display = '{{{$what}}}';
|
2014-09-21 01:25:30 -05:00
|
|
|
</script>
|
2014-09-23 14:28:05 -05:00
|
|
|
<?php // echo javascript_include_tag('transactions'); ?>
|
2014-09-21 01:25:30 -05:00
|
|
|
@stop
|
|
|
|
@section('styles')
|
2014-09-23 14:28:05 -05:00
|
|
|
<?php // echo stylesheet_link_tag('transactions'); ?>
|
2014-09-21 01:25:30 -05:00
|
|
|
@stop
|