@extends('layouts.admin') @section('title', 'Articles') @section('breadcrumbs', 'Overview Articles') @section('css') @endsection @section('content')
{{-- button create --}} {{-- display filter --}} {{-- alert --}} @if (session('success')) @endif {{-- table --}} @foreach ($articles as $index => $article) @endforeach {{$articles->appends(Request::all())->links()}}
No Article Title Action
{{$index+1}} {{$article->title}} @foreach($article->categories as $value) {{$value->name}}, @endforeach @if ($article->status=='DRAFT') Draft @endif
@method('delete') @csrf
@endsection @section('script') @endsection