@extends('layouts.master') @section('title','Instructor List') @section('parentPageTitle', 'All Student') @section('content')

@translate(All Instructors)

@forelse($instructors as $item) @empty @endforelse
{{ $instructors->links() }}
S/L @translate(Photo) @translate(Name) @translate(Email) @translate(Phone) @translate(Balance) @translate(About) @translate(Action)
{{ ($loop->index+1) + ($instructors->currentPage() - 1)*$instructors->perPage() }} avatar {{-- @if($item->image != null)
@else avatar
@endif --}}
{{$item->name}} {{$item->email ?? 'N/A'}} {{$item->phone ?? 'N/A'}} {{formatPrice($item->balance)}} {!! $item->about !!}

No Data Found

@endsection