@extends('layout.app')
@section('title', __('customers'))
@section('content')
@foreach ($customers as $customer)
{{ __('sl') }}
{{ __('customer_group') }}
{{ __('name') }}
{{ __('company_name') }}
{{ __('email') }}
{{ __('phone_number') }}
{{ __('tax_number') }}
{{ __('action') }}
@endforeach
{{ $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' }}