{{ $offset + $index + 1 }} |
{{ $customer->name }} |
{{ $customer->phone }} |
{{ $customer->email }} |
@if ($type != 0)
{{ $customer->serviceType->name }} |
{{ isset($customer->matrix->name) ? $customer->matrix->name . ' (' . $customer->matrix->id . ')' : 'Matriz' }}
|
@else
{{ $customer->reason ?? 'S/N' }} |
@endif
{{ Carbon\Carbon::parse($customer->created_at, 'UTC')->setTimezone('America/Mexico_City')->format('Y-m-d H:i:s') }}
{{-- $customer->created_at --}}
|
@can('write_customer')
{{ __('buttons.edit') }}
@if ($type == 0)
{{ __('buttons.convert') }}
@endif
@endcan
|
@endforeach