@extends('Backend.dashboard') @section('title') Articles @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($articles as $article) @endforeach
Article Actions
{{ $article->name }} Edit Article Delete Article
@csrf
@endsection @section('ckeditor') @endsection