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

{{ __('All Instructor') }}

@endsection @section('content')
{{ __('All Instructor') }}
@if (count($instructors) > 0)
@foreach ($instructors as $instructor) {{ $instructor->total }} @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Courses') }} {{ __('Sales') }} {{ __('Sales Amount') }} {{ __('Email') }} {{ __('Phone Number') }} {{ __('Status') }} {{ __('Action') }}
img
{{ $instructor->user->name }} {{ number_format($instructor->total_course) }} {{ number_format($instructor->total_sale) }} {{ number_format($instructor->sub_total) }} {{ $instructor->user->email }} {{ $instructor->user->mobile_number }} eye eye
@if (@$instructors->hasPages()) {{ @$instructors->links('frontend.paginate.paginate') }} @endif @else
img
{{ __('Empty Student') }}
@endif
@endsection @push('script') @endpush