@extends('app') @section('extra-css') @endsection @section('content-header')

Edit Scheduler

@endsection @section('content')

@can('schedule-view')   View Schedule @endcan

@canany(['schedule-edit','schedule-update'])
{{csrf_field()}}
{!! Form::select('user_id', $doctors ,$schedule->user_id, ['class'=> 'form-control','placeholder'=> 'Please Select Doctor']) !!}
{!! Form::select('schedule_date', [ 'Saturday'=>'Saturday', 'Sunday'=>'Sunday', 'Monday'=>'Monday', 'Tuesday'=>'Tuesday', 'Wednesday'=>'Wednesday', 'Thursday'=>'Thursday', 'Friday'=>'Friday', ] ,$schedule->schedule_date, ['class'=> 'form-control','placeholder'=> 'Please Select Gender']) !!}
@foreach($schedule->scheduleslots as $slot) @endforeach
Start Time End Time Visitor -
{{-- --}} {{-- @canany(['schedule-edit','schedule-update']) @endcanany --}}
@endcanany
@endsection @section('extra-js') @endsection @section('script') @endsection