@extends($theme.'frontend.layouts.master') @section('title',__('News')) @section('content')
@foreach($news as $data)
img {{date('d M', strtotime($data->updated_at))}}
  • {{__('By Author')}}
  • {{date('F j, Y', strtotime($data->updated_at))}}

{{__($data->title)}}

{!! short_text($data->description, 30) !!}

{{__('Read More')}}
@endforeach
@stop