@extends('dashboard.layouts.main') @section('container')

My Posts

@if (session()->has('success')) @endif
Create a New Post @can ('admin') @endcan @foreach ($posts as $post) @can ('admin') @endcan @endforeach
# TitleAuthorCategory Status Action
{{ $loop->iteration }} {{ $post->title }}{{ $post->author->name }}{{ $post->category->name }} {{ $post->published ? 'Publish' : 'Unpublish' }} @can('admin')
@method('delete') @csrf
@endcan
@endsection