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

{{$data->title}}

@endforeach
@stop