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

View

@include('flash-message') @if($record->parent_category) @endif
Status @if($record->status==1) Active @else Deactive @endif
Image @if($record->image) @endif
Parent {{ $record->parent_category->name_eng }}
Name (In English) {!! $record->name_eng !!}
Name (In Arabic) {!! $record->name_ar !!}
Created at {{\Carbon\Carbon::parse($record->created_at)->format('d-m-Y')}}
Back
@endsection