@extends('user.layout_user.main') @section('content')
{{ $news->newsCategories->name ?? '' }}

{{ $news->title }}

  • {{ $news->created_at->format('d M, Y') }}
  • {{ $news->poster->name ?? 'admin' }}

{!! $news->content !!}

Thể loại khác: @foreach ($allCategories as $cat) {{ $cat->name }} @endforeach
@php use Illuminate\Support\Str; $shareUrl = urlencode(url()->current()); $shareTitle = urlencode($news->name); @endphp @section('meta') @endsection

Các bài viết khác

@foreach ($recommendedNews as $new)
{{ $new->newsCategories->name ?? '' }}

{{ $new->title }}

{{ $new->created_at->format('d M, Y') }}
@endforeach
@endsection @section('css') @endsection