@extends('backend.layouts.app') @section('content')

{{$title}}

@include('backend.layouts.alert')
@foreach ($customers as $customer) @endforeach
{{__('app.customers.name')}} {{__('app.customers.contact_person')}} ({{__('app.customers.accounts')}}) {{__('app.customers.email')}} ({{__('app.customers.accounts')}}) {{__('app.customers.phone')}} ({{__('app.customers.accounts')}}) {{__('app.type')}} {{__('app.status')}} {{__('app.action')}}
{{$customer->name}} {{$customer->contact_person_accounts ?? null}} {{$customer->email ?? null}} {{$customer->phone_accounts ?? null}} {{$customer->customerTypeName ?? null}}
status_label == 'active' ? 'checked' : '' }} aria-checked="{{ $customer->status_label == 'active' ? 'true' : 'false' }}"> {{ $customer->status_label }}
@endsection