@extends('web.layouts.container') @section('css') @endsection @section('header')
@endsection @section('content')

{{__('articles.head')}}

@if(count($page))
@foreach($page as $news)
{{stripText($news->title, 35)}}
{{$news->title}}
{{ucfirst(__('articles.'.$news->added_month)) . ' ' . transYear($news->added_year)}}

{!! $news->description !!}

@endforeach
@else
{{__('main.no_data')}}
@endif
@endsection @section('inner_js') @endsection