StationRuleBatch.php 405 B

1234567891011121314151617
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  5. use Illuminate\Database\Eloquent\Relations\HasOne;
  6. class StationRuleBatch extends ModelExtended
  7. {
  8. protected $fillable=['name','station_type_id','batch_type','owner_id'];
  9. public function stationType(): BelongsTo
  10. {
  11. return $this->belongsTo(StationType::class);
  12. }
  13. }