@extends('layouts.template') @section('template')

CUSTOMER

{{ $customerById->customer_name }}


ID {{ $globalSettings->invoice_prefix."-".str_pad($customerById->customer_code, 8, '0', STR_PAD_LEFT) }}
Address {{ $customerById->address }}
Mobile {{ $customerById->mobile_no }}
Email {{ $customerById->email }}
Note {{ $customerById->note }}
Category {{ $customerById->cat_name }}
@if(Session::has('success'))
{{Session::get('success')}} @php Session::forget('success'); @endphp
@endif @if(Session::has('update'))
{{Session::get('update')}} @php Session::forget('update'); @endphp
@endif @if(Session::has('delete'))
{{Session::get('delete')}} @php Session::forget('delete'); @endphp
@endif
@endsection