Logistic.php 250 B

1234567891011121314
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Builder;
  4. use Illuminate\Database\Eloquent\Model;
  5. /**
  6. * @method static Builder orderBy(string $string, string $string1)
  7. */
  8. class Logistic extends Model
  9. {
  10. protected $fillable = ['name'];
  11. }