@extends('layouts.frontend') @section('content')
{{ trans('cruds.crmCustomer.fields.id') }} | {{ trans('cruds.crmCustomer.fields.first_name') }} | {{ trans('cruds.crmCustomer.fields.last_name') }} | {{ trans('cruds.crmCustomer.fields.status') }} | {{ trans('cruds.crmCustomer.fields.email') }} | {{ trans('cruds.crmCustomer.fields.phone') }} | {{ trans('cruds.crmCustomer.fields.address') }} | {{ trans('cruds.crmCustomer.fields.skype') }} | {{ trans('cruds.crmCustomer.fields.website') }} | {{ trans('cruds.crmCustomer.fields.description') }} | |
---|---|---|---|---|---|---|---|---|---|---|
{{ $crmCustomer->id ?? '' }} | {{ $crmCustomer->first_name ?? '' }} | {{ $crmCustomer->last_name ?? '' }} | {{ $crmCustomer->status->name ?? '' }} | {{ $crmCustomer->email ?? '' }} | {{ $crmCustomer->phone ?? '' }} | {{ $crmCustomer->address ?? '' }} | {{ $crmCustomer->skype ?? '' }} | {{ $crmCustomer->website ?? '' }} | {{ $crmCustomer->description ?? '' }} | @can('crm_customer_show') {{ trans('global.view') }} @endcan @can('crm_customer_edit') {{ trans('global.edit') }} @endcan @can('crm_customer_delete') @endcan |