StationTaskChildren.php 343 B

12345678910111213141516171819
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class StationTaskChildren extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $table="station_task_children";
  9. protected $fillable=[
  10. "station_task_id",
  11. "station_task_table_type",
  12. "station_task_table_id",
  13. ];
  14. }