storage = S3Storage::ownedByCurrentTeam()->whereUuid(request()->storage_uuid)->first(); if (! $this->storage) { abort(404); } $this->authorize('view', $this->storage); } public function render() { return view('livewire.storage.show'); } }