@extends('layouts.app') @section('title','你的通知') @section('content')

我的通知


@if ($notifications->count())
@foreach ($notifications as $notification) @include('notifications.types._' . snake_case(class_basename($notification->type))) @endforeach {!! $notifications->render() !!}
@else
没有消息通知!
@endif
@endsection