@extends('layouts.client.layout') @section('title') {{ $website_lang->where('lang_key','message')->first()->custom_lang }} @endsection @section('client-content')
@include('client.profile.sidebar')
    @foreach ($lawyers as $lawyer)
  • @php $cleint=Auth::guard('web')->user(); $count=App\Message::where(['user_id'=>$cleint->id,'lawyer_id'=>$lawyer->lawyer->id,'user_view'=>0])->count(); @endphp @if ($count>0) {{ $count }} @endif
    doctor image

    {{ $lawyer->lawyer->name }}

  • @endforeach
@endsection