Okan K

Results 7 issues of Okan K

I've installed slim-select on Laravel 8 but getting an error: "Uncaught Error: Could not find select element" ``` Value 1 Value 2 Value 3 new SlimSelect({ select: '#multiple' }); ```...

I was trying something with two browsers (Chrome 102 and Firefox 100.0.2) but I can't see progress bar on Chrome: ![chrome](https://user-images.githubusercontent.com/32717963/170779301-1c8836dc-813e-4e64-8cdc-e379fbd659de.jpg) Same element on Firefox: ![Screenshot 2022-05-27 at 22-37-15 Laravel](https://user-images.githubusercontent.com/32717963/170779344-96ab7c1e-3d99-4d1a-aa71-ca38c18afe8e.png)...

progress

I'm working on Livewire with Summernote editor. I'm using this code for get images thoose added to editor. ``` $dom = new \DomDocument(); $dom->loadHtml($this->pageBody, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); $pageImages = $dom->getElementsByTagName('img');...

I have Project, Service, User and Bookmark models. A user can bookmark a project, a service or another user. Project, Service, Bookmark and User models are cachable. User model: ```...

help wanted
Unconfirmed Bug

Is there any way to attach permission to multiple roles when creating a permission? `$permission = New Permission; foreach ($request->roles as $key => $value) { $permission->attachRole($value); }` I've tried this...

I'm using uuid for my model's id column and taggable_id column type is BIGINT. There is a conflict with column types. Maybe this option can be change on "taggable.php" config...

enhancement
triaged

I'm trying to use redirection like this: ``` $group = Group::create([ 'title' => $this->groupTitle, 'user_id' => Auth::user()->id, 'description' => $this->groupDescription, ]); $this->flash('success', __('translation.success', [ 'toast' => true, 'timer' => 3000,...