@extends('layouts.app') @section('content')
@csrf

Edit Time Slot

@if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('start_time')) {{ $errors->first('start_time') }} @endif
@if ($errors->has('end_time')) {{ $errors->first('end_time') }} @endif
Add price for each day
@foreach($timeSlot->timeSlotPrice as $slotPrice)
Warning: Undefined variable $slotPrice in /home/keshavvps/public_html/keshav/KG2/OJA-Web-main/resources/views/time_slot/editTimeSlot.blade.php on line 131

Warning: Attempt to read property "is_full" on null in /home/keshavvps/public_html/keshav/KG2/OJA-Web-main/resources/views/time_slot/editTimeSlot.blade.php on line 131
name="is_full[{{ $slotPrice->id }}]">
@endforeach
@endsection