@php use App\Services\Cart; @endphp @extends('layouts.app') @section('title', 'Booking List') @section('content')
| Seva Details | Booking Date | Tickets | Total | Actions |
|---|---|---|---|---|
|
{{ ucwords($details['name']) }}
{{ $details['category_name'] }}
₹{{ $details['price']}}
|
{{ \Carbon\Carbon::parse($details['date'])->format('D, d M Y') }}
{{ $details['time_slot'] ?? ''}}
|
{{ $details['slots'] }}
|
₹{{ $details['price'] * $details['slots'] }}
|