Mercurial > packages > magicforger
view src/Generator/Model/stubs/model.stub @ 40:2cf26b593f4a ls_dev_2025_09 tip
better support for different column types
| author | Luka Sitas <sitas.luka.97@gmail.com> |
|---|---|
| date | Thu, 16 Oct 2025 10:54:04 -0400 |
| parents | 76584181267a |
| children |
line wrap: on
line source
<?php namespace {{ namespace }}; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\SoftDeletes; use Wizard\Framework\Models\BaseModel; class {{ class }} extends BaseModel { /** @use HasFactory<\Database\Factories\{{ class }}Factory> */ use HasFactory; use SoftDeletes; /** * The table associated with the model. * * @var string */ protected $table = '{{ tableName }}'; /** * The model's default values for attributes. * * @var array */ protected $attributes = [ # {{ atributeInsertPoint }} ]; protected $casts = [ # {{ castInsertPoint }} ]; protected $fillable = [ # {{ fillableInsertPoint }} ]; protected $default_relations = [ # {{ defaultRelationsInsertPoint }} ]; protected static $filters = [ # {{ defaultFiltersInsertPoint }} ]; public static function get_filters() { return static::filters; } //relations // BelongsTo # {{ belongs_to_relationships }} // HasMany # {{ has_many_relationships }} // HasManyThrough # {{ has_many_through_relationships }} /** * Load the default relations for the model. * * @return $this */ public function load_relations() { foreach($this->default_relations as $relation) { $this->load($relation); } return $this; } /** * Retrieve a query builder instance with default relations loaded. * * @return \Illuminate\Database\Eloquent\Builder */ public static function data_query() { return parent::data_query(); } /** * Retrieve a query builder instance with default relations loaded. * * @return \Illuminate\Database\Eloquent\Builder */ public static function get_data(array $validated = []) { return parent::get_data($validated); } }
