Loading...
@if(count($posts)>0)
{{__('Results')}}
    @foreach($posts as $post)
  • {!! picture($post->imageurl,config('attr.poster.size_x').','.config('attr.poster.size_y'),'absolute h-full w-full object-cover rounded-md',$post->title,'post') !!}
    {{$post->title}}
    {{Str::limit($post->overview,80)}}
  • @endforeach
{{__('View all result')}}
@endif