Revision 2 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Models;use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model;/*** App\Models\OrderType** @property int $id* @property string $name* @property string $internal_name* @property string $short* @property int $erfassung* @property int $status* @property int $rank* @property \Illuminate\Support\Carbon|null $created_at* @property \Illuminate\Support\Carbon|null $updated_at* @method static \Database\Factories\OrderTypeFactory factory($count = null, $state = [])* @method static \Illuminate\Database\Eloquent\Builder|OrderType newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|OrderType newQuery()* @method static \Illuminate\Database\Eloquent\Builder|OrderType query()* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereCreatedAt($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereErfassung($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereId($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereInternalName($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereName($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereRank($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereShort($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereStatus($value)* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereUpdatedAt($value)* @mixin \Eloquent*/class OrderType extends Model{use HasFactory;}