. */ declare(strict_types=1); namespace FireflyIII\Models; use Deprecated; use FireflyIII\Enums\TransactionTypeEnum; use FireflyIII\Support\Models\ReturnsIntegerIdTrait; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\SoftDeletes; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; class TransactionType extends Model { use ReturnsIntegerIdTrait; use SoftDeletes; protected $casts = ['created_at' => 'datetime', 'updated_at' => 'datetime', 'deleted_at' => 'datetime']; protected $fillable = ['type']; /** * Route binder. Converts the key in the URL to the specified object (or throw 404). * * @throws NotFoundHttpException */ public static function routeBinder(self|string $value): self { if (!auth()->check()) { throw new NotFoundHttpException(); } if ($value instanceof self) { $value = (string) $value->type; } $transactionType = self::where('type', ucfirst($value))->first(); if (null !== $transactionType) { return $transactionType; } throw new NotFoundHttpException(); } public function isDeposit(): bool { return TransactionTypeEnum::DEPOSIT->value === $this->type; } public function isOpeningBalance(): bool { return TransactionTypeEnum::OPENING_BALANCE->value === $this->type; } public function isTransfer(): bool { return TransactionTypeEnum::TRANSFER->value === $this->type; } public function isWithdrawal(): bool { return TransactionTypeEnum::WITHDRAWAL->value === $this->type; } public function transactionJournals(): HasMany { return $this->hasMany(TransactionJournal::class); } protected function casts(): array { return [ // 'type' => TransactionTypeEnum::class, ]; } }