@extends('layouts.app') @section('content') {{--
Back
--}}
{{ $customer->name }}
Address: {{ $customer->address ?: "(blank)" }}
Email: {{ $customer->email ?: "(blank)" }}
Phone No: {{ $customer->phone_no ?: "(blank)" }}
Alt Phone No: {{ $customer->alt_phone_no ?: "(blank)" }}
Tin: {{ $customer->tin ?: "(blank)" }}
Password: {{ $customer->password ?: "(blank)" }}
Balance: {{ number_format($customer->balance) ?: "(blank)" }}
@foreach($customer->taxes as $tax)
{{ $tax->name }}
@endforeach
@foreach($customer->invoices as $invoice) @endforeach
Invoice No Issue Date Gross Amount Sales Person Status Created By Actions
INV{{ sprintf("%05d",$invoice->invoice_no) ?: "(blank)" }} {{ $invoice->issue_date ?: "(blank)" }} {{ number_format($invoice->gross_amount) ?: "(blank)" }} {{ $invoice->sales_person ?: "(blank)" }} {{ $invoice->status ?: "(blank)" }} {{ $invoice->user->name ?: "(blank)" }} @if($invoice->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else @lang('Show') @if($invoice->status == "Draft")
@endif @endif
@foreach($customer->invoice_payments as $payment) @endforeach
Invoice No Amount Balance Received By
INV{{ sprintf("%05d",$payment->invoice->invoice_no) }} {{ $payment->amount }} {{ $payment->balance }} {{ $payment->user->name }}
For that very reason, I went on a quest and spoke to many different professional graphic designers and asked them what graphic design tips they live.
After gathering lots of different opinions and graphic design basics, I came up with a list of 30 graphic design tips that you can start implementing.
@endsection