@extends('admin.layouts.app') @section('title') Articles @endsection @section('content')
@include('admin.layouts.sidebar')

Articles ({{ $articles->count() }})

@foreach ($articles as $article) @endforeach
ID Title Preview Published By Created At
{{$article->id}} {{$article->title}} {{$article->title}} @if ($article->published) Live @else Under Review @endif {{ $article->user->name }} {{ $article->created_at }} @if ($article->published) @else @endif
@csrf @method('DELETE')
@endsection