@extends('layouts.app') @section('title', t('المدونة','Blog').' — '.site_name()) @section('content')

{{ t('المدونة','Blog') }}

{{ t('آخر المقالات والأخبار','Latest articles and news') }}

@if($posts->count() === 0)

{{ t('لا يوجد مقالات بعد','No posts yet') }}

@else
@foreach($posts as $post) @endforeach
{{ $posts->links() }}
@endif
@endsection