@extends('front.layouts.front') @section('content')

{{ $News->title }}

{{ $News->description }} Read more {{-- Read more --}}

{{-- --}}

Reviews

{{-- 5 --}}
    @foreach ($Review as $rating)
  • user->profile_photo_path == null) src="{{ url('assets/img/user.svg') }}" @else src="{{ $rating->user->profile_photo_path }}" @endif alt=""> {{ $rating->user->first_name . ' ' . $rating->user->last_name }} {{ date('d.m.Y, H:i', strtotime($rating->created_at)) }}

    {{ $rating->comment }}

    ({{ $rating->ratinglike->count() }})
      {{--
    • --}}
  • @endforeach
@csrf

Related news

@foreach ($Related as $relat)
{{-- --}}

{{ substr($relat->title, 0,56) }}@if(strlen($relat->title) > 56)...@endif

@endforeach
@endsection @section('script') @endsection