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

{{ __(@$title) }}

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