@extends('admin.layouts.app')
@section('title')
Articles
@endsection
@section('content')
@include('admin.layouts.sidebar')
| ID |
Title |
Preview |
Published |
By |
Created At |
|
@foreach ($articles as $article)
| {{$article->id}} |
{{$article->title}} |
|
@if ($article->published)
Live
@else
Under Review
@endif
|
{{ $article->user->name }}
|
{{ $article->created_at }}
|
@if ($article->published)
@else
@endif
|
@endforeach
@endsection