@foreach ($import_logs as $log) @endforeach
Remove Import Time Call Type Total records
{{ $import_time }} @php $ctypeicon = $call_types_icons[ $log->calltype ]; $calltype = ( $ctypeicon != "" )? '' : $call_types_texts[ $log->calltype ]; print( $calltype ); @endphp {{ $log->total_records }}

@foreach ($records as $record) @endforeach
Remove Name Date Added Phone Email Vehicle Customer Status Call Type
{{ $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