🔍
Create
@foreach($posts as $post) @endforeach
id title url Action
{{ $post->id }} {!! $this->search ? $this->highlightTitle($post->title) : $post->title !!} {{ $post->url }}
Show Edit {!! Form::open(['method' => 'DELETE','route' => ['posts.destroy', $post->id]]) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!} {!! Form::close() !!}
{{ $posts->links() }}