@extends('web.layouts.main') @section('content')
@include('web.pages.components.headerNav')
{{date('d/m/Y',strtotime($new->created_at))}}
{{$new->descriptions()->user}}
{{$new->descriptions()->title}}
{!! $new->descriptions()->description !!}

{{__('web.latest_news')}}

@foreach($news as $row)
{{date('d/m/Y',strtotime($row->created_at))}}
{{$row->descriptions()->title}}
@endforeach
@push('js') @endpush @stop