- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Model;
- /**
- * @method static Builder orderBy(string $string, string $string1)
- */use App\Traits\ModelTimeFormat;
- class QualityLabel extends Model
- {
- use ModelTimeFormat;
- protected $fillable = ['name'];
- }
|