@extends('layouts.instructor') @section('breadcrumb')

{{ __(@$title) }}

@endsection @section('content')
{{ __(@$title) }}
@if (count($followers) > 0)
@foreach ($followers as $follower) @endforeach
{{ __('SL') }} {{ __('Image') }} {{ __('Name') }} {{ __('Date') }}
{{ $loop->iteration }}
img
@if ($follower->role == USER_ROLE_INSTRUCTOR) {{ $follower->name }} @else {{ $follower->name }} @endif {{ date('Y-m-d'), strtotime($follower->created_at) }}
@else
img
{{ __('Empty Followers') }}
@endif
@endsection