@if ($selected) {{ __('EXCEL') }} {{ __('PDF') }} @endif
{{ __('Name') }} {{ __('Phone') }} {{ __('Actions') }} @forelse ($customers as $customer) {{ $customer->phone }}
{{ __('View') }} {{ __('Details') }} {{ __('Edit') }} @if ($customer->sales->count() == 0) {{ __('Delete') }} @endif
@empty
{{ __('No customers found.') }}
@endforelse
@if ($this->selectedCount)

{{ $this->selectedCount }} {{ __('Entries selected') }}

{{ __('Clear Selected') }}

@endif {{ $customers->links() }}
{{ __('Show Customer') }}

{{ $customer?->name }}

{{ $customer?->phone }}

{{ $customer?->email }}

{{ $customer?->address }}

{{ $customer?->city }}

{{ $customer?->tax_number }}

@livewire('customers.edit', ['customer' => $customer]) {{ __('Import Customers') }}
{{ __('Name') }} {{ __('Required') }} {{ __('Phone') }} {{ __('Required') }} {{ __('Email') }} {{ __('Optional') }} {{ __('Address') }} {{ __('Optional') }} {{ __('City') }} {{ __('Optional') }} {{ __('Tax Number') }} {{ __('Optional') }}
{{ __('Import') }}
@push('scripts') @endpush