@extends('main') @section('css') @endsection @section('content')
@if (Session::get('error_msg'))
{{Session::get('error_msg')}}
@endif @if (Session::get('succ_msg'))
{{Session::get('succ_msg')}}
@endif
@include("left_menu")
@if($follow_type == 'following')

My Following

@else

My Followers

@endif
@if(count($likes) > 0) @foreach($likes as $lik)
@if($lik->profile_image && is_file('../uploads/profile_images/'.$lik->profile_image)) @else @endif

{{ str_limit($lik->name, $limit = 10, $end = '.....') }}

@if($follow_type == 'following') @endif
@endforeach @else

No Profiles Found

@endif
@if($numrows>$maxlimit)
@endif
@endsection @section('js') @section('js') @endsection