Okan K
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:  Same element on Firefox: ...
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: ```...
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...
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,...