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