@extends('frontend.layouts.master') @section('meta_title', __('All Instructors') . ' || ' . $setting->app_name) @section('contents')
@foreach($instructors as $instructor) @if($instructor->courses()->where(['status' => 'active', 'is_approved' => 'approved'])->count() > 0)
img

{{ $instructor->name }}

{{ $instructor->job_title }} {{ $instructor->courses->count() }} {{ __('Courses') }}

{{ number_format($instructor->courses->avg('avg_rating'), 1) }} {{ __('Ratings') }}

@endif @endforeach
@endsection