@extends('layouts.usermaster') @section('title') Voice Sync: {{ $user->first_name }} {{ $user->last_name }} @endsection @section('content.header.title') Transactions @endsection @section('css') @endsection @section('content')
@isset($trantypes)
@method('POST') @csrf
Transaction Types:
@foreach($trantypes as $tt)
flag == '1') checked @endif>
@endforeach
@endisset

@isset($trans) @foreach($trans as $tran) @endforeach @endisset
Transaction Date Reference # Transaction Type Amount Notes
{{ \Carbon\Carbon::parse($tran->tran_date)->format('m/d/Y')}} {{ $tran->reference }} {{ $tran->tran_type_name }} {{ $tran->amount }} {{ $tran->tran_info }}
@endsection('content') @section('javascript') @endsection @section('page_script') @endsection