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

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

@endforeach
{{$news->links()}}
@stop