@extends('front.beta.layouts.master') @section('breadcrumb') @include('front'.viewPrfx().'partials.news-search') @endsection @section('content')
@if(count($news) > 0)
@foreach($news as $n)
{{timeAgoByTimeStamp($n['created_at'])}}
@php $thumb = newsThumb($n['image']); @endphp

{{$n['summary']}}

@if($n['category'])
{{$n['category']}}
@endif
@endforeach
@else

{{__('message.no_results')}}

@endif
{!!$pagination!!}
@endsection