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

{{ $category->title }}

{!! $category->description ?? 'اخبار مرتبط با ' . $category->title !!}
@forelse($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) !!}

@empty

هیچ خبری در این دسته‌بندی یافت نشد.

@endforelse
{{ $news->links() }}
@endsection @push('styles') @endpush