@if(isset($listing) && $listing )
@foreach ($listing as $key => $row)
|
{{isset($row->payout_id) && $row->payout_id ? $row->payout_id : "-"}}
|
{{isset($row->amount) && $row->amount ?Settings::get('currency_symbol').''.$row->amount : "-"}}
|
{{isset($row->type) && $row->type ? ucfirst($row->type) : "-"}}
|
{{$row->created}}
|
@endforeach
@endif