@extends('layouts.finance') @section('title', 'New Client Invoice') @section('subtitle', 'Bill a client for work done') @section('content')

New Invoice

Back
@if($clients->isEmpty())

No active clients yet. Add a client first.

@else
@csrf
Only needed for non-PKR invoices.
Work Items
@php $rows = old('items', [['product_name' => $selectedClient?->work_details, 'voucher_count' => 1, 'amount' => $selectedClient?->default_rate]]); @endphp @foreach($rows as $index => $row) @endforeach
Description * Quantity Amount *
@endif
@endsection