vue Blog 学习笔记 (3) Notification通知

  • resources/views/article/show.blade.php
@if(Auth::guest())
  
@else
     
@endif

该标签是如何处理的哩?
resources/assets/js/home.js
Vue.component('comment', require('components/Comment.vue'))

User 模型
use Illuminate\Notifications\Notifiable;
trait Notifiable
{
use HasDatabaseNotifications, RoutesNotifications;
}

Laravel Notifications

你可能感兴趣的:(vue Blog 学习笔记 (3) Notification通知)