@extends('layouts.master') @section('title') Customer Detail @endsection @section('page-title') Customer Detail @endsection @section('body') @endsection @section('content')
Add Customer Address Print PDF
{{--
logo

--}}
Customer Detail
Customer No Customer Name Phone No 1 Phone No 2 Email Website
{{ $customer->customer_code }} {{ $customer->customer_name }} {{ $customer->customer_phone_no_1 }} {{ $customer->customer_phone_no_2 }} {{ $customer->customer_email }} {{ $customer->customer_website ?? '' }}
Customer Addresses
@if ($customer && $customer->customer_addresses->isNotEmpty()) @foreach ($customer->customer_addresses as $address) @endforeach @else @endif
Address Type Company Name Customer GSTIN Phone No Address Pincode Area City State Country Action
{{ $address->customer_address_type ?? '' }} {{ $address->customer_company ?? '' }} {{ $address->customer_gstin ?? '' }} {{ $address->customer_address_phone_no ?? '' }} {{ $address->customer_address ?? '' }} {{ $address->customer_pincode ?? '' }} {{ $address->area->area_name ?? '' }} {{ $address->city->city_name ?? '' }} {{ $address->state->state_name ?? '' }} {{ $address->country->country_name ?? '' }} @if (Auth::user()->role_id === 1) @endif
No addresses found for this customer.
@endsection @section('scripts') @endsection