@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @error('company_name')
{{ $message }}
@enderror @error('customer_name')
{{ $message }}
@enderror @error('address')
{{ $message }}
@enderror
@csrf
@error('state')
{{ $message }}
@enderror

Customer List

@foreach ($customers as $customer) @endforeach
Client Name Customer Name Contact GSTN Email Address City State
{{ $customer->company_name }} {{ $customer->customer_name }} {{ $customer->contact }} {{ $customer->gst_number }} {{ $customer->email }} {{ $customer->address }} {{ $customer->city }} {{ $customer->state }}
{{ $customers->links() }}