要与Laravel中的所有视图共享数据吗?

时间:2019-04-29 13:01:35

标签: php laravel

我正在尝试向auth中间件下的所有视图共享一组通知。我以为我也许可以打电话给Auth::check(),但它似乎总是返回false?

<?php

namespace App\Providers;

use Illuminate\Http\Request;
use Illuminate\Support\ServiceProvider;
use Auth;

class ViewServiceProvider extends ServiceProvider
{
    /**
     * Bootstrap the application services.
     * @return void
     */
    public function boot()
    {
        view()->composer('*', function ($view)
        {
            $view->with('userNotifications', Auth::user()->notifications);
        });
    }
}

0 个答案:

没有答案