@extends('layouts.member') @section('title', 'お知らせ一覧') @section('content')

お知らせ一覧

戻る
@if(($announcements ?? collect())->isEmpty())
お知らせはありません。
@else
@foreach($announcements as $announcement)
{{ $announcement->title }}
{{ $announcement->published_at?->format('Y/m/d') }}
@if($announcement->body) @include('member.partials._announcement_body', ['html' => $announcement->body, 'class' => 'mt-2']) @endif
@endforeach
@endif @endsection