@extends('super_admins.layouts.master') @section('title') View Course @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Course

Course Category

{{ $archive->archive_category->name ? $archive->archive_category->name : '--' }}

Name

{{ $archive->name ? $archive->name : '--' }}

Image

@if ($archive->image) {{ $archive->slug }} @else -- @endif

Slug

{{ $archive->slug ? $archive->slug : '--' }}

Status

{{ $archive->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($archive->created_at, 'd-m-Y') }}

Description

{!! $archive->description !!}

@endsection @section('scripts') @endsection