@extends('adminlte::page') @section('title', '通知一覧') @section('content_header')

通知一覧

@stop @section('content')

通知一覧

@foreach($notifications as $notification) @endforeach
送信日時 送信先 メッセージ ステータス
{{ $notification->created_at->format('Y/m/d H:i') }} {{ $notification->user->name }} {{ $notification->message }} {{ $notification->status === 'success' ? '成功' : '失敗' }}
@stop @section('css') @stop @section('js') @stop