我有这个听众类
class NotifyMR
{
/**
* Create the event listener.
*/
public function __construct()
{
}
public function handle(LeaveRequestWasReviewed $event)
{
return $event->leaveRequest.'->'.$event->statue;
}
}
所以我需要在触发事件后在视图中共享一些变量,那么怎么做呢?
答案 0 :(得分:0)
通过View
门面
View::share('key', 'value');