'decimal:2', 'date' => 'date', ]; public function encodedBy() { return $this->belongsTo(\App\Models\User::class, 'encoded_by'); } public function scopeIncome($query) { return $query->where('category', 'INCOME'); } public function scopeExpense($query) { return $query->where('category', 'EXPENSE'); } public function scopeByYear($query, int $year) { return $query->where('fiscal_year', $year); } }