@extends('Backend.dashboard') @section('title') Posts @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
@foreach($posts as $post) @endforeach
Post Image Post Title Actions
{{ $post->title }} Edit Post Delete Post
@csrf

@endsection @section('ckeditor') @endsection