. */ declare(strict_types=1); namespace FireflyIII\Models; use Eloquent; use Illuminate\Database\Eloquent\Collection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Query\Builder; use Illuminate\Support\Carbon; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; /** * FireflyIII\Models\TransactionType * * @property int $id * @property Carbon|null $created_at * @property Carbon|null $updated_at * @property Carbon|null $deleted_at * @property string $type * @property-read Collection|TransactionJournal[] $transactionJournals * @property-read int|null $transaction_journals_count * @method static \Illuminate\Database\Eloquent\Builder|TransactionType newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|TransactionType newQuery() * @method static Builder|TransactionType onlyTrashed() * @method static \Illuminate\Database\Eloquent\Builder|TransactionType query() * @method static \Illuminate\Database\Eloquent\Builder|TransactionType whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TransactionType whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TransactionType whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|TransactionType whereType($value) * @method static \Illuminate\Database\Eloquent\Builder|TransactionType whereUpdatedAt($value) * @method static Builder|TransactionType withTrashed() * @method static Builder|TransactionType withoutTrashed() * @mixin Eloquent */ class TransactionType extends Model { use SoftDeletes; public const DEPOSIT = 'Deposit'; public const INVALID = 'Invalid'; public const LIABILITY_CREDIT = 'Liability credit'; public const OPENING_BALANCE = 'Opening balance'; public const RECONCILIATION = 'Reconciliation'; public const TRANSFER = 'Transfer'; public const WITHDRAWAL = 'Withdrawal'; 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). * * @param string $type * * @return TransactionType * @throws NotFoundHttpException */ public static function routeBinder(string $type): TransactionType { if (!auth()->check()) { throw new NotFoundHttpException(); } $transactionType = self::where('type', ucfirst($type))->first(); if (null !== $transactionType) { return $transactionType; } throw new NotFoundHttpException(); } /** * @return bool */ public function isDeposit(): bool { return self::DEPOSIT === $this->type; } /** * @return bool */ public function isOpeningBalance(): bool { return self::OPENING_BALANCE === $this->type; } /** * @return bool */ public function isTransfer(): bool { return self::TRANSFER === $this->type; } /** * @return bool */ public function isWithdrawal(): bool { return self::WITHDRAWAL === $this->type; } /** * @return HasMany */ public function transactionJournals(): HasMany { return $this->hasMany(TransactionJournal::class); } }