contact = ! empty($contact) ? $contact : user()->contact; $this->model = $model; $this->payments = $this->getPayment($model, $payments); } /** * Get the view / contents that represent the component. * * @return \Illuminate\Contracts\View\View|string */ public function render() { return view('components.widgets.payment_history'); } protected function getPayment($model, $payment) { if (! empty($model)) { return $model; } if (! empty($payment)) { return $payment; } return $this->contact->income_transactions()->orderBy('created_at', 'desc')->limit(3)->get(); } }