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