| 1234567891011121314151617181920 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\HasOne;
- use App\Traits\LogModelChanging;
- class StationRuleBatch extends Model
- {
- use LogModelChanging;
- protected $fillable=['name','station_type_id','batch_type','owner_id'];
- public function stationType(): HasOne
- {
- return $this->hasOne(StationType::class);
- }
- }
|