@extends("client.layouts.app") @section("title", __("client.announcements.title")) @section("content")

{{ __('client.announcements.page_title') }}

{{ __('client.announcements.page_subtitle') }}

@if($announcements->isEmpty())
📣

{{ __('client.announcements.no_announcements') }}

@else
@foreach($announcements as $announcement)
{{ $announcement->title }}
{{ strip_tags($announcement->announcement) }}
@endforeach
{{ $announcements->links() }}
@endif @endsection