@extends('layout.default') @section('title') Articles - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('page', 'page__article--index') @section('main')

{{ __('staff.articles') }}

@foreach ($articles as $article) @endforeach
Title Author Date {{ __('common.comments') }} {{ __('common.action') }}
{{ $article->title }} {{ $article->user->username }} {{ $article->comments_count }}
  • {{ __('common.view') }}
  • {{ __('common.edit') }}
  • @csrf @method('DELETE')
  • {{ $articles->links('partials.pagination') }}
    @endsection