@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')
|
{{__('Name')}} | {{__('Designation')}} | {{__('Socials')}} | {{__('Image')}} | {{__('Description')}} | {{__('Action')}} | @foreach($all_instructor as $data)
---|---|---|---|---|---|---|
|
{{$data->name}} | {{$data->designation}} |
@php
$event_img = get_attachment_image_by_id($data->image,'thumbnail',true);
@endphp
@if (!empty($event_img))
@endif
|
{{ optional($data->lang)->description ?? ''}} |
|