@extends('layouts.app') @section('title', 'Posts') @section('content')
@can('add_posts') Create @endcan
@can('edit_posts', 'delete_posts') @endcan @foreach($result as $item) @can('edit_posts', 'delete_posts') @endcan @endforeach
Id Title Author Created AtActions
{{ $item->id }} {{ $item->title }} {{ $item->user['name'] }} {{ $item->created_at->toFormattedDateString() }} @include('shared._actions', [ 'entity' => 'posts', 'id' => $item->id ])
{{ $result->links() }}
@endsection