@php /** * @name Pagina lista clienti * @version 1.0.0 */ @endphp @extends('app') @section('content')
@do_action('search_filters_active')
{{ __t('Cliente') }}
{{ __t('Partita Iva') }}
{{ __t('Telefono') }}
@if (empty($customers))
{{ __t('Nessun cliente trovato') }}
@else @foreach ($customers as $customer)

@if(!empty($customer->get_warning()))
{!! $customer->get_warning() !!}
@endif {{ $customer->get_company_name() }}

{{ $customer->get_address()->get_formatted_address() }}
{{ $customer->get_vat() }}
{{ $customer->get_phone() }}
@endforeach @endif
@endsection