@extends('assistant.layout.master') @section('page-title', 'Appointment') @section('breadcrumb') @endsection @section('title','Appointment') @section('content')

{{request()->has('clinicId') ? \App\Models\Clinic::find(request()->input('clinicId'))->name : null}}

@php $isDoctor = auth('assistant')->user() && auth('assistant')->user()->position=="doctor"; @endphp @if($isDoctor)
@if(request()->has('showAll')) Show Today's Appointments @else Show All Appointments @endif
@endif
@endsection