@extends('cms.layouts.app')
@section('pre-styles')
@endsection
@section('contents')
Add Post
{{-- @if ($message = Session::get('success'))
{{ $message }}
@elseif($message = Session::get('danger'))
{{ $message }}
@endif --}}
Created
Title
Category
Feature Image
Status
Action
@foreach ($posts as $post)
{{ $post->created_at }}
{!! $post->title !!}
{{ $post->postCategory->name ?? '' }}
@if ($post->deleted_at == null)
@else
@endif
{{-- @each('admin.cms.menus._menu', $menus, 'menu') --}}
@endforeach
@endsection
@section('scripts')
@endsection