@extends('app-new') @push('content-header') @endpush @section('content')
@foreach($billings as $index => $billing) @php $customer = App\Models\Customer::find($billing->customer_id); @endphp @endforeach
S.No. Customer Name Billing Address Billing State Billing City Billing Country Billing Pincode GST Treatment GSTIN Place of Contact Place of Contact (With State Code) Contact Name Contact Phone Action
{{ $index + 1 }} {{ $customer->display_name }} {{ $billing->customer_bill_addr }} {{ $billing->customer_bill_state }} {{ $billing->customerbill_city }} {{ $billing->customer_bill_country }} {{ $billing->customer_bill_pin }} {{ $billing->customer_bill_gsttreatment }} {{ $billing->customer_bill_gstin }} {{ $billing->customer_bill_place_con }} {{ $billing->customer_bill_state_code }} {{ $billing->contact_name ?? '-' }} {{ $billing->contact_phone ?? '-' }} Edit
@csrf @method('DELETE')
@endsection