@extends('theme.master') @section('title', 'Profile & Setting') @section('content') @include('admin.message')

{{ __('Dashboard') }}

@if(Auth::User()->user_img != null || Auth::User()->user_img !='')
@else
@endif
{{ Auth::User()->fname }} {{ Auth::User()->lname }}
@php $followers = App\Followers::where('user_id', '!=', $user->id)->where('follower_id', $user->id)->count(); $followings = App\Followers::where('user_id', $user->id)->where('follower_id','!=', $user->id)->count(); @endphp
{{ $followers }} Followers
{{ $followings }} Following
@endsection @section('custom-script') @endsection