. */ declare(strict_types=1); namespace FireflyIII\Models; use FireflyIII\User; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; /** * FireflyIII\Models\ObjectGroup * * @property int $id * @property int $user_id * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property \Illuminate\Support\Carbon|null $deleted_at * @property string $title * @property int $order * @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Account[] $accounts * @property-read int|null $accounts_count * @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\Bill[] $bills * @property-read int|null $bills_count * @property-read \Illuminate\Database\Eloquent\Collection|\FireflyIII\Models\PiggyBank[] $piggyBanks * @property-read int|null $piggy_banks_count * @property-read User $user * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup newQuery() * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup query() * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereOrder($value) * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereTitle($value) * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ObjectGroup whereUserId($value) * @mixin \Eloquent */ class ObjectGroup extends Model { protected $fillable = ['title', 'order', 'user_id']; /** * The attributes that should be casted to native types. * * @var array */ protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', 'user_id' => 'integer', 'deleted_at' => 'datetime', ]; /** * @return \Illuminate\Database\Eloquent\Relations\MorphToMany */ public function piggyBanks() { return $this->morphedByMany(PiggyBank::class, 'object_groupable'); } /** * @return \Illuminate\Database\Eloquent\Relations\MorphToMany */ public function bills() { return $this->morphedByMany(Bill::class, 'object_groupable'); } /** * @return \Illuminate\Database\Eloquent\Relations\MorphToMany */ public function accounts() { return $this->morphedByMany(Account::class, 'object_groupable'); } /** * Route binder. Converts the key in the URL to the specified object (or throw 404). * * @param string $value * * @throws NotFoundHttpException * @return ObjectGroup */ public static function routeBinder(string $value): ObjectGroup { if (auth()->check()) { $objectGroupId = (int) $value; /** @var ObjectGroup $objectGroup */ $objectGroup = self::where('object_groups.id', $objectGroupId) ->where('object_groups.user_id', auth()->user()->id)->first(); if (null !== $objectGroup) { return $objectGroup; } } throw new NotFoundHttpException; } /** * @return BelongsTo * @codeCoverageIgnore */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }