Mark Snape

Results 9 comments of Mark Snape

I have some users reporting the same browser "Aw Snap" SBOX_FATAL_MEMORY_EXCEEDED. I have a page with up to 5 dicom images that are loaded from the server.

`trixRichText()` is a morphMany relationship, so $post->trixRichText->content cannot work. You need to add `first()` in there as well

Its a good article but its been around too long for this competition

I created a select dropdown in the `$header_view` and added `wire:model="{{ $per_page }}"` property of the component. Styling was harder than linking it up

I created a workaround in the `updatedCheckboxAll()` by including the paginator. Might be useful to someone... ``` public function updatedCheckboxAll() { $this->checkbox_values = []; if ($this->checkbox_all) { $this->models()->paginate($this->per_page)->each(function ($model) {...

First impressions with the software is that this is an accident waiting to happen as @dhrrgn says. I frequently jump between projects and there is no indication on the tab...

I don't know if this is correct, but I overwrote the defaults in the mount method; ```php public function mount() { $this->setTableProperties(); $this->sort_attribute = 'name'; $this->sort_direction = 'asc'; } ```