{{ trans('app.customer') . ': ' . $customer->name }}
{{ trans('app.email') . ': ' . $customer->email }}
@if ($customer->primaryAddress)
{{ trans('app.phone') . ': ' . $customer->primaryAddress->phone }}
{{ trans('app.zip_code') . ': ' . $customer->primaryAddress->zip_code }}
@endif
@can('view', $customer)
{{ trans('app.view_detail') }}
@endcan