@extends('layouts.app') @section('content')
# | {{ __('customer.data.name') }} | {{ __('customer.data.code') }} | {{ __('customer.data.phone') }} | {{ __('customer.data.email') }} | {{ __('customer.data.type') }} | {{ __('customer.data.origin') }} | Método de contacto | {{ __('customer.data.created_at') }} | |
---|---|---|---|---|---|---|---|---|---|
{{ $offset + $index + 1 }} | {{ $customer->name }} | {{ $customer->code }} | {{ $customer->phone }} | {{ $customer->email }} | {{ $customer->serviceType->name }} | @isset($customer->matrix->name) {{ $customer->matrix->name }} [{{ $customer->matrix->id }}] @else Matriz @endisset | {{ $customer->contactMedium() }} | {{ Carbon\Carbon::parse($customer->created_at, 'UTC')->setTimezone('America/Mexico_City')->format('Y-m-d H:i:s') }} {{-- $customer->created_at --}} | @can('write_customer') @endcan |