@extends('backend.admin-master') @section('site-title') {{__('Courses Instructor')}} @endsection @section('style') @include('backend.partials.datatable.style-enqueue') @include('backend.partials.media-upload.style') @endsection @section('content')

{{__('All Courses Instructor')}}

@foreach($all_instructor as $data) @endforeach
{{__('Name')}} {{__('Designation')}} {{__('Socials')}} {{__('Image')}} {{__('Description')}} {{__('Action')}}
{{$data->name}} {{$data->designation}}
    @foreach($data->social_icons as $social)
  • @endforeach
@php $event_img = get_attachment_image_by_id($data->image,'thumbnail',true); @endphp @if (!empty($event_img))
@endif

{{ optional($data->lang)->description ?? ''}}

@endsection @section('script') @include('backend.partials.bulk-action',['action' => route('admin.courses.instructor.bulk.action')]) @endsection