site->deployments()->findOrFail($id); $this->logContent = $deployment->log->content; $this->dispatch('open-modal', 'show-log'); } public function render(): View { return view('livewire.application.deployments-list', [ 'deployments' => $this->site->deployments()->latest()->simplePaginate(10), ]); } }