@extends('layouts.client.layout') @section('title') {{ seoSetting()->where('page_name', 'Lawyers')->first()?->seo_title ?? 'Lawyers | LawMent' }} @endsection @section('meta') @endsection @section('client-content')
@if ($lawyers->count() != 0) @foreach ($lawyers as $lawyer)
{{$lawyer?->name}}
{{ ucfirst($lawyer?->name) }}

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

{{ $lawyer?->designations }}

{{ ucfirst($lawyer?->location?->name) }}

@endforeach @else

{{ __('Lawyer Not Found') }}

@endif
@if ($lawyers->hasPages()) {{ $lawyers->links('client.paginator') }} @endif
@endsection