|
{{ $record->fname }} {{ $record->lname }}
|
{{ $date_added }}
|
{{ $record->phone }}
|
{{ $record->email }}
|
{{ $record->vehicle_year }} {{ $record->vehicle_make }} {{ $record->vehicle_model }}
|
@php
$iconurl = ! empty( $customer_status_icons[ $record->customer_status ] ) ? $customer_status_icons[ $record->customer_status ] : '';
$customer_status_label = ! empty( $customer_status_texts[ $record->customer_status ] ) ? $customer_status_texts[ $record->customer_status ] : '';
$customer_status = ( $iconurl != "" ) ? ' ' : $customer_status_label;
$calltype_id = ! empty( $record->livecall_next_calltype ) ? $record->livecall_next_calltype : $record->livecall_prev_calltype;
$ctypeicon = $call_types_icons[ $calltype_id ];
$calltype = ( $ctypeicon != "" )? ' ' : $call_types_texts[ $calltype_id ];
print( $customer_status );
@endphp
|
@php
print( $calltype );
@endphp
|
@endforeach