@extends('layouts.master') @section('title', 'List Course Admin') @section('css') @endsection @section('pageContent') @include('layouts.breadcrumb', ['title' => 'List Course ', 'subtitle' => 'Home', 'link' => 'admin.dashboard'])

Course Management

This is the list of all course. and you can manage them. with the help of this table.

Add New Course
@foreach($courses as $article) @endforeach
Thumbnail Title Theme Duration Description Status Action
Thumbnail {{ $article->title }} {{ $article->theme }} {{ $article->duration }} {{ $article->description }}
@if($article->status == 'published')
Published @elseif($article->status == 'draft')
Drafted @elseif($article->status == 'inactive')
Drafted @endif
@endsection @section('scripts') @endsection