@extends('template.index') @inject("configCtrl","App\Http\Controllers\ConfigurationController") @section('title',$configCtrl->get(App::getLocale(),"site_title") .' - Actualités') @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") .' - Actualités') @section('og_description',$configCtrl->get(App::getLocale(),"description")) @section('content')

{{ trans("general.News") }}

@foreach($news as $article)
{{$article->img_alt}}

{{$article->title}}

{{$article->summary}}

{!! trans("news.READMORE") !!}
@endforeach
@endsection