Level 34
@sylvain92 why you would change that? You NEVER change files inside vendor folder that is why it is ignored in git by default.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
hi not sure about section in forum. I have change RegistersUsers.php in /vendor/laravel/ui/auth_backend
public function register(Request $request)
{
// ...
$user = $this->create($request->all());
event(new Registered($user));
$user->channel()->create([
'name' => $request->channel_name,
'slug' => Str::slug($request->channel_name, '-'),
'uid' => uniqid(true),
]);
// ...
}
but vendor is set inside git ignore file. that why It never update on push and deploy on forge laravel.
how to fix this issue ?
regards
Please or to participate in this conversation.