@foreach($posts as $post) @endforeach
Name Image Category Created At Action
{{ $post->name }} {{ $post->category->name }} {{ $post->created_at }} {!! Form::open(['route' => ['posts.destroy', $post->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}