@extends('admin.layout.app') @section('title', 'Courses') @section('content')
@if (request('search')) @endif
@forelse ($courses as $course)
@if ($course->image) {{ $course->name }} @else No image @endif
{{ $course->name }}

{{ Str::limit($course->description, 120) }}

@if ($course->publish_status) Published @else Not Published @endif

Author: {{ $course->author }}

@empty
No courses found! View All
@endforelse
{{ $courses->links() }}
@endsection