@extends('layouts.admin_app') @section('title','Admin Dashboard') @section('content')

View

@include('flash-message') @if($record->categories[0]->id) @endif @if($record->meta_title) @endif @if($record->meta_description) @endif @if($record->meta_keywords) @endif
ID {{$record->id}}
Status @if($record->status==1) Active @else Deactive @endif
Name (In English) {{$record->name_eng}}
Name (In Arabic) {{$record->name_ar}}
Category {{$record->categories[0]->name_eng}}
Image
Venue (In English) {{$record->venue_eng}}
Venue (In Arabic) {{$record->venue_ar}}
Start Date {{$record->start_date}}
End Date {{$record->end_date}}
Course Price {{$record->amount}}
Days {{$record->days}}
Hours {{$record->hours}}
About the Course (In English) {!! $record->about_course_eng !!}
About the Course (In Arabic) {!! $record->about_course_ar !!}
Prerequisites (In English) {!! $record->prerequisites_eng !!}
Prerequisites (In Arabic) {!! $record->prerequisites_ar !!}
Package Includes (In English) {!! $record->package_includes_eng !!}
Package Includes (In Arabic) {!! $record->package_includes_ar !!}
Created at {{\Carbon\Carbon::parse($record->created_at)->format('d-m-Y')}}
Meta Title {!! $record->meta_title !!}
Meta Description {!! $record->meta_description !!}
Meta Keywords {!! $record->meta_keywords !!}
Back
@endsection