@extends('admin.layouts.app') @section('content')
@can('instructor-create') Add Instructor @endcan
@forelse ($instructors as $key=>$instructor) @empty @endforelse
# Name Designation Rating Image Action
{{($key+1) + ($instructors->currentPage() - 1)*$instructors->perPage()}} {{$instructor->name}} {{$instructor->designation}} {{$instructor->rating}} @can('instructor-edit') @endcan @can('instructor-delete')
@method('DELETE') @csrf
@endcan

Nothing Found


Showing {{($instructors->currentpage()-1)*$instructors->perpage()+1}} to {{(($instructors->currentpage()-1)*$instructors->perpage())+$instructors->count()}} of {{$instructors->total()}} Instructors

{!! $instructors->links() !!}
@endsection