CarType.php 178 B

12345678910111213
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CarType extends Model
  5. {
  6. protected $fillable=[
  7. 'name','model','length','load','remark'
  8. ];
  9. }