@extends('layouts.admin.app') @section('page-title') {{ __('Dashboard') }} @endSection @section('page-nav-title')

{{ __('doctors') }}

@endsection @section('content') @include('includes.dialog')
{{-- --}} {{-- --}} {{-- --}} {{-- --}} @if (isPermissionsAllowed('edit-doctor', 'delete-doctor')) @endif @foreach ($doctors as $doctor) {{-- --}} {{-- --}} {{-- --}} {{-- --}} @if (isPermissionsAllowed('edit-doctor', 'delete-doctor')) @endif @endforeach
{{ __('name') }} {{ __('phone-number') }} {{ __('email') }}{{ __('account-number') }}{{ __('specialization') }}{{ __('image') }} {{ __('personal-image') }}{{ __('email-verified') }}{{ __('show-appointments') }}{{ __('control') }}
{{ $doctor->name_en }} {{ $doctor->phone_number }} {{ $doctor->email }}{{ $doctor->email }} --}} {{-- @if (app()->getLocale() == 'ar') --}} {{-- {{ $doctor->specialization_ar }} --}} {{-- @else --}} {{-- {{ $doctor->specialization_en }} --}} {{-- @endif --}} {{-- @if ($doctor->profile_pic_ar != null) @endif @if ($doctor->personal_pic != null) @endif @if (!empty($doctor->email_verified_at)) {{ __('activated') }} @else {{ __('not-activated') }} @endif {{ __('show-appointments') }} @if (isPermissionsAllowed('edit-doctor')) @endif @if (isPermissionsAllowed('delete-doctor')) @endif
@endsection @section('scripts') @endsection