Rihulfa Akbar

Results 13 comments of Rihulfa Akbar

@lubber-de I think its because `.multiple` class, every dropdown without `.multiple` class is normal

@IgorArnaut ![Image](https://github.com/user-attachments/assets/b7f4180c-94fa-4695-8551-2aea9e8706ab)

@GeNyaa If you set it to `true` in config, that value will be used in constructor - https://github.com/laravel/framework/blob/fba3b98d1ff22f75ea4bd70f8200cfa0b6a3f43d/src/Illuminate/Hashing/HashManager.php#L18 - https://github.com/laravel/framework/blob/fba3b98d1ff22f75ea4bd70f8200cfa0b6a3f43d/src/Illuminate/Hashing/BcryptHasher.php#L38 ![Image](https://github.com/user-attachments/assets/5d0bd664-0b14-4210-958a-4c5253819ae7) As you can see above, first check is passed,...

Hi @MustafaMohamed2018 You can prevent unintended scroll by quill when clicking alignment toolbar like this ```js let lastScroll = window.pageYOffset; window.onscroll = () => { lastScroll = scrollDetection(lastScroll); } const...

@ibilalkhilji You may need to set the priority in bootstrap file ### updated ```php ->withMiddleware(function (Middleware $middleware) { $middleware->prependToPriorityList( before: \Illuminate\Routing\Middleware\SubstituteBindings::class, prepend: \App\Http\Middleware\SetDefaultLocaleForUrls::class, ); }) ``` So, your implicit binding...

@ibilalkhilji My apologize, I have update my answer. Is it still not resolve your issue?

@mustafayusufozcan Have you tried ```php public function users(): BelongsToMany {  return $this->belongsToMany(User::class)     ->using(AnnouncementUser::class) ->withTimestamps(); }

@mustafayusufozcan did you know that ```php const UPDATED_AT ``` is for updated_at column name? not for determine it should be updated or not during attaching. https://github.com/laravel/framework/blob/12.x/src%2FIlluminate%2FDatabase%2FEloquent%2FModel.php#L290 If you dont want...

Hi @Yathish26 @malhardhawle You can do this to prevent unintended scroll by quill ```js let lastScroll = window.pageYOffset; window.onscroll = () => { lastScroll = window.pageYOffset; } quill.root.addEventListener('paste', (e) =>...

Hi @Srifi19 , just as @elmatadorinho mentioned, you can modify the handler like this ```js handler: () => { window.focus(); if (document.activeElement) document.activeElement.blur(); } ``` reference: https://stackoverflow.com/a/6976583