@extends('frontend.home_dashboard') @section('home') @section('title') {{ $news->news_title }} | Easy Online News @endsection

{{ $news->news_title }}

  • Updated {{ $news->created_at->format('l M d Y') }}
  • / {{ $news->view_count }} Read

{{ $news->news_title }}

{!! $news->news_details !!}

Tags : @foreach($tags_all as $tag) @endforeach

Share News

@php $review = App\Models\Review::where('news_id',$news->id)->latest()->limit(5)->get(); @endphp @foreach($review as $item) @if($item->status == 0) @else
COMMENTS

{{ $item->user->name }}

{{ Carbon\Carbon::parse($item->created_at)->diffForHumans() }}

{{ $item->comment }}
@endif @endforeach
@guest

For Add Product Review. You Need To Login First Login Page

@else
@csrf @if (session('status')) @elseif(session('error')) @endif
Comments *
@endguest

@foreach($newnewspost as $key=> $newsitem) @endforeach
@endsection