@extends('layouts.public') @section('title') {{trans('seo.title.search')}} @endsection @section('description') {{trans('seo.description.category')}} @endsection @section('image', asset('images/share/posts.jpg')) @section('content')
@forelse($posts->chunk(3) as $chunk)
@foreach($chunk as $post)
{{$post->title}}
{{$post->date}}
@endforeach
@empty

{!!trans('global.search.no-results')!!}

@endforelse
@endsection