love_php/app/Models/Industry.php

17 lines
289 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\Base;
class Industry extends Base
{
protected $fillable = [];
protected $guarded = [];
public function subIndustry(){
return $this->hasMany(SubIndustry::class, 'industry_id');
}
}