@extends('partial.layout') @section('content')

@if(isset($query)) نتایج جستجو برای: {{ $query }} @else آخرین اخبار @endif

@if(isset($query)) نتایج جستجو برای عبارت "{{ $query }}" در اخبار @else جدیدترین اخبار و رویدادهای مهم @endif
@if($news->count() > 0) @foreach($news as $item)
@if($item->attachments->isNotEmpty()) @php $attachment = $item->attachments->first(); $sizes = json_decode($attachment->sizes); $mediumImage = optional($sizes)->medium ?? $attachment->path; @endphp @endif
  • {{ jdate($item->created_at)->format('Y/m/d') }}
  • {{ $item->user->full_name }}

{{ $item->title }}

{!! Str::limit($item->short_description, 200) !!}

@endforeach @else

@if(isset($query)) هیچ خبری با عبارت "{{ $query }}" یافت نشد! @else هنوز خبری ثبت نشده است! @endif

@endif
{!! $news->links('vendor.pagination.default') !!}
@endsection @push('styles') @endpush