@extends('layouts.admin') @section('content')
{{ trans('cruds.crmCustomer.fields.id') }} | {{ $crmCustomer->id }} |
---|---|
{{ trans('cruds.crmCustomer.fields.first_name') }} | {{ $crmCustomer->first_name }} |
{{ trans('cruds.crmCustomer.fields.last_name') }} | {{ $crmCustomer->last_name }} |
{{ trans('cruds.crmCustomer.fields.status') }} | {{ $crmCustomer->status->name ?? '' }} |
{{ trans('cruds.crmCustomer.fields.email') }} | {{ $crmCustomer->email }} |
{{ trans('cruds.crmCustomer.fields.phone') }} | {{ $crmCustomer->phone }} |
{{ trans('cruds.crmCustomer.fields.address') }} | {{ $crmCustomer->address }} |
{{ trans('cruds.crmCustomer.fields.skype') }} | {{ $crmCustomer->skype }} |
{{ trans('cruds.crmCustomer.fields.website') }} | {{ $crmCustomer->website }} |
{{ trans('cruds.crmCustomer.fields.description') }} | {{ $crmCustomer->description }} |