@extends('layouts.admin') @push('title', get_phrase('Instructor')) @push('meta') @endpush @push('css') @endpush @section('content')

{{ get_phrase('Instructor List') }}

{{ get_phrase('Add new Instructor') }}
@if (count($instructors) > 0)

{{ get_phrase('Showing') . ' ' . count($instructors) . ' ' . get_phrase('of') . ' ' . $instructors->total() . ' ' . get_phrase('data') }}

@foreach ($instructors as $key => $row) @endforeach
@else @include('admin.no_data') @endif @if (count($instructors) > 0)

{{ get_phrase('Showing') . ' ' . count($instructors) . ' ' . get_phrase('of') . ' ' . $instructors->total() . ' ' . get_phrase('data') }}

{{ $instructors->links() }}
@endif
@endsection @push('js') @endpush