@extends('layout') @section('title', 'new') @section('keywords', 'new') @section('content')
{{--

smart
fleet
management

--}}

{!! $formatted_title !!}

@foreach ($news as $new)
new

{{ $new->title }}

{{ $new->created_at }}

{{ strlen($new->description) > 300 ? substr($new->description, 0, 300) . '...' : $new->description }}

@endforeach
@endsection