JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrfirst(); return $account; } public static function payer($payer) { $payer = Payer::where('id', '=', $payer)->first(); return $payer; } public function income_category($category) { $category = IncomeType::where('id', '=', $category)->first(); return $category; } public function payment_type($payment) { $payment = PaymentType::where('id', '=', $payment)->first(); return $payment; } public function accounts() { return $this->hasOne('App\Models\AccountList', 'id', 'account_id'); } public function payers() { return $this->hasOne('App\Models\Payer', 'id', 'payer_id'); } public function payment_types() { return $this->hasOne('App\Models\PaymentType', 'id', 'payment_type_id'); } public function income_categorys() { return $this->hasOne('App\Models\IncomeType', 'id', 'income_category_id'); } }