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

@if(isset($newsCategory) && !empty($newsCategory)) {{$newsCategory->name}} @else {{ trans('module.news_title') }} @endif

@foreach ($news as $new)
@include('front.pages.newsCard')
@endforeach
{{----}}
@endsection