@extends('admin.master') @section('title', @trans('Courses')) @section('content')
| # | @trans('Title') | @trans('Subjects') | @trans('Created By') | @trans('Status') | @trans('Distribution status') | @trans('Settings') | @forelse ($courses as $item)|
|---|---|---|---|---|---|---|---|
| {{ $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 |
|
|
| @trans('No courses found') | |||||||