@extends('layouts.admin') @section('content')

{{__('Blocked Instructors')}}

@foreach($instructors as $instructor) @endforeach
{{__('Image')}} {{__('Name')}} {{__('Phone Number')}} {{__('Country')}} {{__('State')}} {{__('Status')}} {{__('Action')}}
{{$instructor->name}} {{$instructor->phone_number}} {{$instructor->country ? $instructor->country->country_name : '' }} {{$instructor->state ? $instructor->state->name : '' }}
{{$instructors->links()}}
@endsection @push('style') @endpush @push('script') @endpush