@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
{{-- @if ($userBs->theme == 'home_ten') @endif --}} @foreach ($instructors as $instructor) {{-- @if ($userBs->theme == 'home_ten') @endif --}} @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Occupation') }}{{ __('Featured') }}{{ __('Actions') }}
instructor image {{ $instructor->name }} {{ $instructor->occupation }}
@csrf
@csrf
@endif
@endsection