@extends('backend.admin.master') @section('content')
@include('backend.section.breadcrumb', ['title'=> 'Instructor', 'sub_title'=> 'Managed Instructor']);
All Instructor

@foreach ($all_instructors as $index => $item) @endforeach
NO Image Name Email Phone Status Action
{{ $index + 1 }} @if ($item->photo) @else No image found @endif {{ $item->name }} {{ $item->email }} {{ $item->phone }} @if ($item->status == 1) Active @else Inactive @endif
status == 1 ? 'checked' : '' }}>
@endsection @push('scripts') @endpush