Total Pending Complain
@if (Auth::user()->user_type == "super_admin" )
{{ App\Models\Complain::where('type','complain')->where('status','Pending')->get()->count() }}
@elseif (App\Models\Complain::where('police_station', Auth::user()->police_station )->where('type','complain')->get() && Auth::user()->user_type == "police_station")
{{ App\Models\Complain::where('police_station', Auth::user()->police_station )->where('type','complain')->where('status','Pending')->get()->count() }}
@endif