@extends('layouts.app') @section('title', __('site.articles_title').' — '.config('site.brand.name')) @section('content')
{{ __('site.nav_health_library') }}

{{ __('site.articles_title') }}

{{ __('site.articles_subtitle') }}

@if ($articles->isEmpty())

{{ __('site.articles_empty') }}

@else
@foreach ($articles as $article) @endforeach
{{ $articles->links() }}
@endif
@endsection