uuid = $uuid; $this->loadApplication(); } public function loadApplication() { $this->application = Application::with('uploads')->where('uuid', $this->uuid)->firstOrFail(); } public function render() { return view('livewire.application-status')->with([ 'application' => $this->application, ]); } }