@extends('layouts.master') @section('title', 'List Article Admin') @section('css') @endsection @section('pageContent') @include('layouts.breadcrumb', ['title' => 'List Article', 'subtitle' => 'Home', 'link' => 'admin.dashboard'])

Article Management

This is the list of all article. and you can manage them. with the help of this table.

Add New Article
@foreach($articles as $article) @endforeach
Thumbnail Title (Indo) Title (English) Meta Keywords (Indo) Meta Keywords (English) Status Action
Thumbnail {{ $article->title_id }} {{ $article->title_en }} {{ $article->meta_keyword_id }} {{ $article->meta_keyword_en }}
@if($article->status == 'published')
Published @elseif($article->status == 'draft')
Drafted @elseif($article->status == 'inactive')
Drafted @endif
@endsection @section('scripts') @endsection