@extends('layouts.app') @section('title', 'Customers - Quotation App') @section('styles') @endsection @section('content')
@if(session('success'))
✓ {{ session('success') }}
@endif

Customers

+ Add Customer
@if($customers->count() > 0) @foreach($customers as $customer) @endforeach
# Customer Name City Mobile Email GST No GST Type Actions
{{ $loop->iteration }} {{ $customer->customer_name }} {{ $customer->city ?? '-' }} {{ $customer->mobile }} {{ $customer->email ?? '-' }} {{ $customer->gst_no ?? '-' }} @if($customer->gst_type == 'instate') In-State (18%) @else Out-of-State (18%) @endif
Edit
@csrf @method('DELETE')
@else

No customers yet

Click the "Add Customer" button to add your first customer.

@endif
@endsection