/
ximain1
/
tpu-backend
Обзор
Документация
Войти
/
ximain1
/
tpu-backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
app/Models/Station.php
31 строка
1 KB
Попехин Константин Сергеевич
Корректное добавление отчёта по машинистам
30 дек 2025, 17:25
30 дек 2025, 17:25
47b1c9e
Код
Авторство
О чём код?
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string $name * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @method static \Illuminate\Database\Eloquent\Builder<static>|Station newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder<static>|Station newQuery() * @method static \Illuminate\Database\Eloquent\Builder<static>|Station query() * @method static \Illuminate\Database\Eloquent\Builder<static>|Station whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder<static>|Station whereId($value) * @method static \Illuminate\Database\Eloquent\Builder<static>|Station whereName($value) * @method static \Illuminate\Database\Eloquent\Builder<static>|Station whereUpdatedAt($value) * @method static \Database\Factories\StationFactory factory($count = null, $state = []) * @mixin \Eloquent */ class Station extends Model { /** @use HasFactory<\Database\Factories\StationFactory> */ use HasFactory; protected $fillable = [ 'name', ]; public $timestamps = false; }