@extends('layouts.layout') @section('content')

@lang('Add Doctor Schedule')

@can('doctor-schedule-update') @endcan

{{ $doctorSchedule->user->name }}

{{ $doctorSchedule->weekday }}

{{ $doctorSchedule->start_time }}

{{ $doctorSchedule->end_time }}

{{ $doctorSchedule->avg_appointment_duration }} @lang('minutes')

{{ $doctorSchedule->serial_type }}

@if($doctorSchedule->status == '1') @lang('Active') @else @lang('Inactive') @endif

@endsection