@extends('admin.layouts.app') @section('panel')
@forelse($transactions as $trx) @empty @endforelse
@lang('User - Employer') @lang('TRX') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Details')
@if ($trx->employer) {{ $trx->employer->company_name }} @{{@$trx->employer->username }} @lang('Employer') @endif @if ($trx->user) {{@$trx->user->fullname }} @{{@$trx->user->username}} @lang('User') @endif {{ $trx->trx }} {{ showDateTime($trx->created_at) }} {{ diffForHumans($trx->created_at) }} {{ $trx->trx_type }} {{showAmount($trx->amount)}} {{ $general->cur_text }} {{ showAmount($trx->post_balance) }} {{ __($general->cur_text) }} {{ __($trx->details) }}
{{ __($emptyMessage) }}
@if($transactions->hasPages()) @endif
@endsection @push('style-lib') @endpush @push('script-lib') @endpush @push('script') @endpush