@extends('layouts.master') @section('title') Report @endsection @section('content.header.title') User Transactions @endsection @section('content.header.info') Generate user activity report. @endsection @section('css') @endsection @section('content')
@isset($trantypes)
@method('POST') @csrf
Transaction Types:
@foreach($trantypes as $tt)
current_flag == '1') checked @endif>
@endforeach
@endisset

@isset($trans) @foreach($trans as $tran) @endforeach @endisset
VSID Name Email Account Type Transaction Date Reference # Transaction Type Amount
{{ $tran->vsid }} {{ $tran->first_name }} {{ $tran->last_name }} {{ $tran->email }} {{ $tran->account_name }} {{ \Carbon\Carbon::parse($tran->tran_date)->format('m/d/Y')}} {{ $tran->reference }} {{ $tran->tran_type_name }} {{ $tran->amount }}
@endsection('content') @section('javascript') @endsection @section('page_script') @endsection