CarType.php 235 B

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