@extends('layouts.master') @section('css') @endsection @section('title') Transactions @endsection @section('content.header.title') @endsection @section('content.header.info') @endsection @section('content')

Transactions

@foreach($trans as $tran) @endforeach
User Reference # Amount Processed On Note Approved? Add New
{{ $tran->first_name }} {{ $tran->last_name }} {{$tran->reference}} {{ number_format($tran->amount, 2)}} {{ \Carbon\Carbon::parse($tran->processed_date)->format('m/d/Y')}} {{$tran->tran_info}} @if($tran->approved_by > 0) Approved @else Not Approved @endif
@endsection('content') @section('javascript') @endsection