@extends('master') @section('title') User Transactions @stop @section('styles') @stop @section('content') @include('partials.dashboard-menu')

{{ $user->name }} from {{ $user->companyName }}

Back @if($transactions!==NULL)
@foreach($transactions as $transaction) @endforeach
Report Created At
{{ $transaction->product }} {{ $transaction->created_at }}
@else

No transactions found

@endif
@include('partials.footer') @stop