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 Vapor はユーザーがアップロードを実行するために認証される必要があります。認証されていないアップロードの実行を許可する必要があります。これどうやってするの?
ありがとう
UserPolicy にこのようなものを追加すると、蒸気が機能するはずです
public function before($user) { if (Auth::guest()) { return true; } }