@extends('user.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('user.partials.rtl-style') @section('content')
{{ __('Instructors') }}
@includeIf('user.partials.languages')
{{ __('Add_Instructor') }}
@if (count($instructors) == 0)

{{ __('NO_INSTRUCTOR_FOUND') }}

@else
@foreach ($instructors as $instructor) @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Occupation') }} {{ __('Actions') }}
instructor image {{ $instructor->name }} {{ $instructor->occupation }}
@csrf
@endif
@endsection