@extends('layout.app') @section('title', __('customers')) @section('content')
@can('customer.create') {{ __('add_customer') }} @endcan
@foreach ($customers as $customer) @endforeach
{{ __('sl') }} {{ __('customer_group') }} {{ __('name') }} {{ __('company_name') }} {{ __('email') }} {{ __('phone_number') }} {{ __('tax_number') }} {{ __('action') }}
{{ $loop->iteration }} {{ $customer->customerGroup->name ?? 'N/A' }} {{ $customer->name }} {{ $customer->company_name ?? 'N/A' }} {{ $customer->email ?? 'N/A' }} {{ $customer->phone_number }} {{ $customer->tax_no ?? 'N/A' }}
@endsection