@extends('admin.master') @section('title', @trans('Courses')) @section('content')

@trans('Courses')

@include('admin.pages.course._model_search')
{{--
--}} {{-- --}} {{-- @trans('Export to Excel')--}} {{-- --}} {{-- --}}{{-- --}} {{--
--}}
@csrf
@forelse ($courses as $item) @empty @endforelse
# @trans('Title') @trans('Subjects') @trans('Created By') @trans('Status') @trans('Distribution status') @trans('Settings')
{{ $loop->index + 1 }} {{ $item->title }} {{ @$item->subject_title }} {{ @$item->create_by->name }} @if ($item->status == 1) @trans('Active') @else @trans('Unactive') @endif @if ($item->distribution_status == 1) @trans('Distributed') @else @trans('Not distributed') @endif @include('admin.pages.course._model_delete', ['id' => $item->id])
@trans('No courses found')
@endsection