CarType.php 296 B

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