@foreach($listing->items() as $key => $list) {{isset($list->id) && $list->id ? $list->id : '-'}} {{isset($list->charge_id) && $list->charge_id ? $list->charge_id : '-'}} {{isset($list->title) && $list->title ? ucfirst($list->title) : '-'}} {{isset($list->card_type) && $list->card_type ? ucfirst($list->card_type).' Card' : '-'}} {{ isset($list->amount) && $list->amount ? settings::get('currency_symbol').''.$list->amount : '-'}} {{isset($list->created) && $list->created ? _dt($list->created) : '-'}} @if($list->status == 2)

{{'Success'}}

@elseif($list->status == 0)

{{'Failed'}}

@endif @endforeach