@extends('layouts.app') @section('title', 'Schedule Details') @section('content')
User: {{ $schedule->user->name }}
Company: {{ $schedule->company->name }}
Status: {{ $schedule->status ? 'Active' : 'Inactive' }}
Total Slots: {{ $slots->count() }}
Fees: {{ number_format($schedule->fees, 2) }}
Total Fees: {{ number_format($slots->sum('fees'), 2) }}
Schedule Date: {{ $schedule->schedule_date->format('Y-m-d') }}
Per Customer Time: {{ $schedule->per_customer_time }} mins
Morning Location: {{ $schedule->morning_location }}
Evening Location: {{ $schedule->evening_location }}
| # | Shift | Location | Start Time | End Time | Fees | Actions |
|---|---|---|---|---|---|---|
| Shift | Location | Fees | ||||
| {{ $index + 1 }} | {{ ucfirst($slot->shift) }} | {{ $slot->location }} | {{ \Carbon\Carbon::parse($slot->start_time)->format('H:i') }} | {{ \Carbon\Carbon::parse($slot->end_time)->format('H:i') }} | {{ number_format($slot->fees, 2) }} | {!! $actionButton !!} |
| No slots found. | ||||||