@extends('web.layouts.main') @section('content')
{{$title}}
{{__('news.blog')}}

{{__('news.explore')}}

@if(!$request->search ?? null)
@foreach($categories as $value) @if($value->currentDescription->name?? null)
@endif @endforeach
@endif
@foreach($news as $value)
{{$value->category->currentDescription->name ?? ""}}

{{$value->currentDescription->title ?? ""}}

{{date('Y d F', strtotime($value->created_at))}}
{!! stripText($value->currentDescription->description, 200) !!}
{{__('news.more')}}
@endforeach
@if(!($news->hasMorePages() == false && $news->currentPage() == 1))
@endif
@endsection