@extends('layouts.writer') @section('title', 'Writer Dashboard') @section('content')

Writer's Dashboard


All Articles

@forelse($articles as $article) @empty @endforelse
ID Slug Title Subhead Author Published At Last Updated First Created Actions
{{ $article->id }} {{ $article?->slug ?? '-' }} {{ $article?->title ?? '-' }} {{ $article?->subtitle ?? '-' }} {{ $article?->author?->display_name ?? '-' }} {{ $article?->published_at ?? '-' }} {{ $article?->updated_at ?? '-' }} {{ $article?->created_at ?? '-' }} {{-- --}}
No Articles
@endsection