����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.139.59.149 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/resources/views/instructor/follow/ |
Upload File : |
@extends('layouts.instructor') @section('breadcrumb') <div class="page-banner-content text-center"> <h3 class="page-banner-heading text-white pb-15">{{ __(@$title) }}</h3> <!-- Breadcrumb Start--> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center"> <li class="breadcrumb-item font-14"><a href="{{ route('instructor.dashboard') }}">{{ __('Dashboard') }}</a> </li> <li class="breadcrumb-item font-14 active" aria-current="page">{{ __(@$title) }}</li> </ol> </nav> </div> @endsection @section('content') <div class="instructor-profile-right-part"> <div class="instructor-quiz-list-page instructor-live-class-page"> <div class="instructor-my-courses-title d-flex justify-content-between align-items-center"> <h6>{{ __('Following') }}</h6> </div> <div class="row"> <div class="col-12"> @if (count($followings) > 0) <div class="table-responsive table-responsive-xl"> <table class="table"> <thead> <tr> <th>{{ __('SL') }}</th> <th scope="col">{{ __('Image') }}</th> <th scope="col">{{ __('Name') }}</th> <th scope="col">{{ __('Date') }}</th> </tr> </thead> <tbody> @foreach ($followings as $following) <tr> <td>{{ $loop->iteration }}</td> <td> <div class="table-data-img-wrap"><img src="{{ asset($following->image) }}" alt="img" class="img-fluid"></div> </td> <td> @if ($following->role == USER_ROLE_INSTRUCTOR) <a href="{{ route('userProfile', $following->instructor->user_id) }}" target="_blank">{{ $following->name }}</a> @else {{ $following->name }} @endif </td> <td>{{ date('Y-m-d'), strtotime($following->created_at) }}</td> </tr> @endforeach </tbody> </table> </div> @else <!-- If there is no data Show Empty Design Start --> <div class="empty-data"> <img src="{{ asset('frontend/assets/img/empty-data-img.png') }}" alt="img" class="img-fluid"> <h5 class="my-3">{{ __('Empty Followings') }}</h5> </div> <!-- If there is no data Show Empty Design End --> @endif </div> </div> </div> </div> @endsection