Customer records
@if( $records->count() > 0 ) @foreach ( $records as $record ) @endforeach
Customer Date Added Last update Call due Call Type Open
{{ $record->fname }} {{ $record->lname }} {{ date('m/d/Y', strtotime( $record->dateadded ) ) }} @if ( ! empty( $record->lastupdate ) && $record->lastupdate != '0000-00-00 00:00:00' ) {{ date('m/d/Y H:i:s', strtotime( $record->lastupdate ) ) }} @endif @if ( ! empty( $record->remind ) && $record->remind != '0000-00-00' ) {{ date('m/d/Y', strtotime( $record->remind ) ) }} @endif @if( ! empty( $calltype_texts[$calltype_id] ) ) {{ $calltype_texts[$calltype_id] }} @endif
@else No records found for this number. @endif