StationType.php 195 B

1234567891011121314
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Traits\ModelLogChanging;
  5. class StationType extends Model
  6. {
  7. use ModelLogChanging;
  8. protected $fillable=['name'];
  9. }