php7までは非推奨で、php8からは、完全に使えない。 __construnct()にする。
エラー詳細
Warning: Undefined array key "key"
修正前
{{if $request.key}}
修正後
{{if isset($request.key)}}