Webエンジニアのメモ帳

技術的な話を中心に書いています。

2024-03-21から1日間の記事一覧

【Laravel】イベントとリスナについて超簡単に解説

Laravelにはイベント・リスナという機能があり、簡潔に書くと以下のようなものです。 app/Providers/EventServiceProviderに以下のように加筆しておく protected $listen = [ 'App\Events\Event' =>[ 'App\Listeners\Lister' ] ]; Eventを以下のような書き方…

【Git】ブランチを作成しようとすると「Can't find node in PATH」のエラー

起きたエラー git checkout -b {ブランチ名}でブランチを作成しようとすると、以下のエラーが出ました。 Can't find node in PATH, trying to find a node binary on your system Couldn't find the Node.js binary. Ensure you have Node.js installed. Ope…