@extends('layouts.admin') @section('title', 'Page Articles') @section('content')
Daftar Artikel
+ Tambah Artikel
@forelse ($articles as $article) {{-- Artikel --}} {{-- Learning Path --}} {{-- Trending --}} {{-- Status --}} {{-- Created --}} {{-- Aksi --}} @empty @endforelse
Artikel Learning Path Trending Status Dibuat Aksi
{{ $article->title }}

{{ $article->slug }}

{{ $article->learningPath->title ?? '-' }}

@if ($article->is_trending) Trending @else Normal @endif @if ($article->status === 'publish') Publish @else Draft @endif {{ $article->created_at->format('d M Y') }} Edit
@csrf @method('DELETE')
Belum ada artikel
@endsection