@extends('layouts.app') @section('title', 'Posts') @section('content')
Id | Title | Author | Created At | @can('edit_posts', 'delete_posts')Actions | @endcan
---|---|---|---|---|
{{ $item->id }} | {{ $item->title }} | {{ $item->user['name'] }} | {{ $item->created_at->toFormattedDateString() }} | @can('edit_posts', 'delete_posts')@include('shared._actions', [ 'entity' => 'posts', 'id' => $item->id ]) | @endcan