@extends('front.layouts.master') @section('content')

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

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

    @foreach($categories as $key => $category)
  • @endforeach
@if(count($news) > 0) @foreach($news as $n)
{{__('message.posted_on')}} : {{date('d M, Y', strtotime($n->created_at))}}

{{$n->summary}}

@endforeach @else
{{__('message.no_results')}}
@endif
{!!$pagination!!}
@endsection