123456789101112131415161718 |
- <?php
-
- use Illuminate\Database\Eloquent\SoftDeletingTrait;
-
- class Scale extends Eloquent
- {
- protected $fillable = [];
- use SoftDeletingTrait;
- protected $dates = ['deleted_at'];
-
- protected $table = 'scales';
-
- public function outcomes()
- {
- //
-
- }
- }
|