@extends('template.index') @inject("configCtrl","App\Http\Controllers\ConfigurationController") @section('title',$configCtrl->get(App::getLocale(),"site_title") .' - Blog') @section('site_title',$configCtrl->get(App::getLocale(),"site_title")) @section('description',$configCtrl->get(App::getLocale(),"description")) @section('keywords',$configCtrl->get(App::getLocale(),"meta_keywords")) @section('og_title',$configCtrl->get(App::getLocale(),"site_title") .' - Blog') @section('og_description',$configCtrl->get(App::getLocale(),"description")) @section('content') {{ trans("general.Blog") }} {{ __('general.home') }} {{ trans("general.Blog") }} @foreach($news as $article) {{$article->title}} {{$article->created_at->toFormattedDateString()}} {{$article->summary}} {!! trans("news.READMORE") !!} @endforeach @endsection
{{$article->summary}}