@extends('layouts.client.layout') @section('title') {{ $lawyer?->seo_title ?? $lawyer?->name }} @endsection @section('meta') @endsection @section('client-content')
{{ $lawyer?->name }}

{{ $lawyer?->name }}

{{ $lawyer?->department?->name }} ({{ $lawyer?->designations }})

{{ __('Years of experience') }}: {{ $lawyer?->years_of_experience }}

{{ __('Fee') }}: {{ currency($lawyer?->fee) }}
{!! $lawyer?->about !!}
    @foreach ($lawyer?->socialMedia as $socialMedia)
  • @endforeach

{{ __('Lawyer Info') }}

@foreach ($days as $index => $day) @php $times = $lawyer?->schedules->where('day_id', $day?->id); @endphp @if ($times->isNotEmpty()) @endif @endforeach
{{ __('Week Day') }} {{ __('Schedule') }}
{{ $day?->title }} @foreach ($times as $time)
{{ strtoupper($time?->start_time) }} - {{ strtoupper($time?->end_time) }}
@endforeach
{!! $lawyer?->address ?? '

' . __('No data found!') . '

' !!}
{!! $lawyer?->educations ?? '

' . __('No data found!') . '

' !!}
{!! $lawyer?->experience ?? '

' . __('No data found!') . '

' !!}
{!! $lawyer?->qualifications ?? '

' . __('No data found!') . '

' !!}

{{ __('Create Appointment') }}

@csrf
@endsection