@extends('layouts.app') @section('title', 'Customers - Quotation App') @section('styles') @endsection @section('content')
| # | Customer Name | City | Mobile | 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 |
Click the "Add Customer" button to add your first customer.