@extends('layouts.app') @section('title', __('app.customer_details') . ' - SEU CRM') @section('content')
{{ __('app.email') }}: {{ $customer->email }}
{{ __('app.phone') }}: {{ $customer->phone }}
{{ __('app.company') }}: {{ $customer->company ?? __('app.not_available') }}
{{ __('app.created') }}: {{ $customer->created_at->format('M d, Y') }}
{{ __('app.address') }}:
{{ $customer->address }}