@extends('layouts.app') @section('title', __('お知らせ').'|'.config('app.name')) @section('content')
{{ __('ホーム') }} {{ __('> お知らせ') }}

{{ __('お知らせ') }}

@forelse(\App\Models\News::where('is_published',true)->withT()->latest('published_at')->get() as $n)
{{ optional($n->published_at)->format('Y-m-d') }}

{{ $n->t('title') }}

{{ $n->t('body') }}

@empty
{{ __('現在お知らせはありません。') }}
@endforelse
@endsection