@extends('backend.layouts_backend.master2') @section('title') All Bookings @endsection @section('content') {{-- header --}}

All Bookings

{{-- --}}
{{-- end header --}}
@include('backend.includes.message_alerts')
{{-- --}} @foreach ($studio_business_bookings as $booking) {{-- --}} {{-- view details modal --}} {{-- end of view modal --}} @endforeach
#Id Code Product/Package Client Booked On Total to Pay Paid Balance StatusCreated ByAction
{{ $booking->id ?? '' }} {{ $booking->booking_code ?? '' }} {{ $booking->product->product_name ?? '' }} {{ $booking->client->first_name ?? '' }} {{ $booking->client->last_name ?? '' }} {{ $booking->client->other_names ?? '' }} {{ short_date($booking->booking_date) ?? '' }} {{ $booking->total_amount_to_pay ?? '' }} {{ $booking->amount_paid ?? '' }} {{ $booking->balance ?? '' }} {!! get_booking_status($booking->booking_status) !!} {{ get_user_fullname($booking->created_by) ?? '' }}
{{-- @can('county-show') --}} {{-- @endcan --}} {{-- @can('county-edit') --}} {{-- @endcan --}} {{-- @can('county-delete') --}}
@csrf @method('DELETE')
{{-- @endcan --}}

@endsection