@extends('layouts.app') @section('title', __('app.customer_details') . ' - SEU CRM') @section('content')

{{ __('app.customer_details') }}

{{ __('app.edit_customer') }}
{{ __('app.customer_information') }}
{{ substr($customer->name, 0, 2) }}
{{ $customer->name }}
{{ $customer->status == 'active' ? __('app.active') : __('app.inactive') }}

{{ __('app.email') }}: {{ $customer->email }}

{{ __('app.phone') }}: {{ $customer->phone }}

{{ __('app.company') }}: {{ $customer->company ?? __('app.not_available') }}

{{ __('app.created') }}: {{ $customer->created_at->format('M d, Y') }}

@if($customer->address)

{{ __('app.address') }}:

{{ $customer->address }}

@endif
{{ __('app.quick_actions') }}
{{ __('app.edit_customer') }}
@csrf @method('DELETE')
@endsection