@extends('layouts.app') @section('styles') @endsection @section('content')
@include('include.employer-side-nav')
Deposit History
@forelse($logs as $data) @php $details = ($data->detail != null) ? json_encode($data->detail) : null; @endphp @empty @endforelse
Transaction ID Gateway Amount Status Time Details
{{$data->trx}} {{ __(@$data->gateway->name) }} {{showAmount($data->amount)}} USD @if($data->status == 1) @lang('Complete') @elseif($data->status == 2) @lang('Pending') @elseif($data->status == 3) @lang('Cancel') @endif @if($data->admin_feedback != null) @endif {{showDateTime($data->created_at)}}
Data Not Found
{{$logs->links()}}
@endsection @section('scripts') @endsection