@extends('backend.admin-master') @section('site-title') {{__('Courses')}} @endsection @section('style') @include('backend.partials.datatable.style-enqueue') @include('backend.partials.media-upload.style') @endsection @section('content')
|
{{__('ID')}} | {{__('Title')}} | {{__('Image')}} | {{__('Instructor')}} | {{__('Category')}} | {{__('Status')}} | {{__('Action')}} | @foreach($all_courses as $data)
---|---|---|---|---|---|---|---|
|
{{$data->id}} | {{optional($data->lang)->title ?? __('Untitled')}} |
@php
$event_img = get_attachment_image_by_id($data->image,'thumbnail',true);
@endphp
@if (!empty($event_img))
@endif
|
{{optional($data->instructor)->name}} | {{optional(optional($data->category)->lang)->title ?? __('Uncategorized')}} |
|
|