Product/Package
-- Select --
@foreach ($products as $key => $product)
{{ $product->product_name }}
@endforeach
{{-- validation --}}
@if ($errors->has('product_id'))
{{ $errors->first('product_id') }}
@endif
Client
-- Select --
@foreach ($clients as $key => $client)
id ? 'selected' : '' }}>
{{ $client->first_name }} {{ $client->last_name }} {{ $client->other_names }}
@endforeach
{{-- validation --}}
@if ($errors->has('client_id'))
{{ $errors->first('client_id') }}
@endif
Booking Date
{{-- validation --}}
@if ($errors->has('booking_date'))
{{ $errors->first('booking_date') }}
@endif
Booking Time
{{-- validation --}}
@if ($errors->has('booking_time'))
{{ $errors->first('booking_time') }}
@endif
Job Location
{{-- validation --}}
@if ($errors->has('job_location'))
{{ $errors->first('job_location') }}
@endif
Booking Status
-- Select --
Pending
Processing
Completed
Cancelled
{{-- validation --}}
@if ($errors->has('booking_status'))
{{ $errors->first('booking_status') }}
@endif
Amount To Pay
{{-- validation --}}
@if ($errors->has('total_amount_to_pay'))
{{ $errors->first('total_amount_to_pay') }}
@endif
Amount Paid
{{-- validation --}}
@if ($errors->has('amount_paid'))
{{ $errors->first('amount_paid') }}
@endif
Balance
{{-- validation --}}
@if ($errors->has('balance'))
{{ $errors->first('balance') }}
@endif
Payment Method
-- Select --
Cash
Mobile
Money
Bank
Transfer
{{-- validation --}}
@if ($errors->has('payment_method'))
{{ $errors->first('payment_method') }}
@endif
Payment Status
-- Select --
Pending
Partial
Payment
Full
Payment
{{-- validation --}}
@if ($errors->has('payment_status'))
{{ $errors->first('payment_status') }}
@endif
Payment Date
{{-- validation --}}
@if ($errors->has('payment_date'))
{{ $errors->first('payment_date') }}
@endif
{{-- End of products ordered --}}