@extends('layouts.admin') @section('title',__('admin.title_blog')) @section('page-title',__('admin.title_blog')) @section('content')
| {{ __('admin.col_title') }} | {{ __('admin.col_category') }} | {{ __('admin.col_author') }} | {{ __('admin.col_published') }} | {{ __('admin.col_featured') }} | {{ __('admin.col_status') }} | {{ __('admin.col_actions') }} |
|---|---|---|---|---|---|---|
| {{ Str::limit($p->getTranslation('title','en'),50) }} | {{ $p->getTranslation('category','en') }} | {{ $p->author?->name ?? '—' }} | {{ $p->published_at?->format('d M Y') ?? '—' }} | {{ $p->is_featured ? '⭐' : '—' }} | {{ $p->is_published ? __('admin.published') : __('admin.draft') }} | {{ __('admin.edit') }} |