Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在执行操作或重定向到列表或其他页面时在 laravel 管理面板中显示消息。
我已经配置了 laravel-admin 包,所以内置 laravel 模块消息显示在烤面包机中,所以我想要类似的。
如果有人知道这件事,请告诉我。
谢谢。
您可以使用它来进行重定向:
admin_toastr(__('Outlet created successfully')); return redirect(admin_url('/'));
或者在您使用如下所示的任何操作执行后返回的情况
public function sale(Request $request,Content $content) { return $content->withSuccess('Success', 'Fund has been transfered successfully'); }