@extends('layouts.app') @section('title', __('app.customers') . ' - SEU CRM') @section('content')
@if(session('success'))| {{ __('app.name') }} | {{ __('app.email') }} | {{ __('app.phone') }} | {{ __('app.company') }} | {{ __('app.status') }} | {{ __('app.created') }} | {{ __('app.actions') }} |
|---|---|---|---|---|---|---|
|
{{ substr($customer->name, 0, 1) }}
{{ $customer->name }}
|
{{ $customer->email }} | {{ $customer->phone }} | {{ $customer->company ?? __('app.not_available') }} | {{ ucfirst($customer->status) }} | {{ $customer->created_at->format('M d, Y') }} | |
|
{{ __('app.no_customers_found') }} |
||||||