@extends('layouts.app') @section('pagecontent')

Laravel 8 User Roles and Permissions Step by Step Tutorial - codeanddeploy.com

Posts

Manage your posts here. Add post
@include('layouts.partials.messages')
@foreach ($posts as $key => $post) @endforeach
No Name Action
{{ $post->id }} {{ $post->title }} Show Edit {!! Form::open(['method' => 'DELETE','route' => ['posts.destroy', $post->id],'style'=>'display:inline']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!} {!! Form::close() !!}
{!! $posts->links() !!}
@endsection @section('scripts') @include('inc.scripts') @endsection