| 12345678910111213141516171819 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\LogModelChanging;
- class StationTaskChildren extends Model
- {
- use LogModelChanging;
- protected $table="station_task_children";
- protected $fillable=[
- "station_task_id",
- "station_task_table_type",
- "station_task_table_id",
- ];
- }
|