Mercurial > packages > magicforger
view src/Generator/Model/stubs/model.stub @ 29:010ace248d14 codex
Added support for filters, not fully there with relations or anything like that but it's a start
| author | Luka Sitas <sitas.luka.97@gmail.com> |
|---|---|
| date | Mon, 09 Jun 2025 20:51:04 -0400 |
| parents | f88d2d5dee30 |
| children | 8dd668020310 |
line wrap: on
line source
<?php namespace {{ namespace }}; use Illuminate\Database\Eloquent\SoftDeletes; class {{ class }} extends BaseModel { //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 $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); } }
