@extends('layouts.main') @section('title', 'Nomadic-News') @section('content')

{{__('Discover our news')}}

@if($newsData->count() > 0) @php $classes = ['col-md-3','col-md-4', 'col-md-5']; @endphp @foreach($newsData as $news) @php $key = array_rand($classes); @endphp
{{$news->tags}}

{{\Illuminate\Support\Str::limit(ucfirst($news->name), 30, $end='..') }}

{{ \Illuminate\Support\Str::limit($news->heading_intro, 30, $end='..') }}

@if($news->createdBy->profile_pic) Profile @else Profile @endif
{{ucfirst($news->createdBy->fname)}} {{ucfirst($news->createdBy->lname)}}
{{date('d l Y',strtotime($news->created_at))}}
@endforeach @endif
@endsection @section('footer_scripts') @endsection