@extends('layouts.app') @section('title') {{ __('messages.appointments') }} @endsection @section('page_css') @endsection @section('content') @include('flash::message')
@include('layouts.search-component')
{{ __('messages.common.filter') }}
@if (Auth::user()->hasRole('Admin')) @endif @if (Auth::user()->hasRole('Doctor')) @endif @if (Auth::user()->hasRole('Patient|Receptionist')) {{ __('messages.appointment.new_appointment') }} @endif
@include('appointments.table')
@include('appointments.templates.templates')
@endsection @section('scripts') @if(Auth::user()->hasRole('Admin') || Auth::user()->hasRole('Doctor')) @else @endif @endsection