@extends('admin.layouts.grid') @section('section', translate('Blog')) @section('title', translate('Blog Articles')) @section('create', route('admin.blog.articles.create')) @section('content')
| {{ translate('ID') }} | {{ translate('Article') }} | {{ translate('Category') }} | {{ translate('Comments') }} | {{ translate('Views') }} | {{ translate('Published date') }} | |
|---|---|---|---|---|---|---|
| {{ $article->id }} |
{{ shorterText($article->title, 40) }}
{{ shorterText($article->short_description, 50) }} |
{{ $article->category->name }} | {{ $article->comments_count }} | {{ $article->views }} | {{ dateFormat($article->created_at) }} |
|