@extends('layouts.admin') @section('content')
No | Payment | Date | Time | Service | Customer Name | Contact | Actions | {{--Action | --}}
---|---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | @if ($booking->status === 'Cash') {{ $booking->status }} @else @if ($booking->status === 'Paid') Cashless - Paid @elseif ($booking->status === 'Unpaid') Cashless - Unpaid @endif @endif | {{ $booking->date }} | @if($booking->schedule) {{ $booking->schedule->start_time }} - {{ $booking->schedule->end_time }} @else Schedule Deleted @endif | {{ $booking->category }} - {{ $booking->service_name }} ({{ number_format($booking->total, 0, '.', '.') }}) | {{ $booking->name }} | {{ $booking->handphone }} | ||
{{ __('Booking Data Empty') }} |