12345678910111213141516171819202122232425 |
- <?php
- namespace App\Modules\Channel\Models;
- use Illuminate\Database\Eloquent\Model;
- class Company extends Model
- {
- protected $table = 'companies';
- protected $fillable = ['name', 'is_important', 'distribution_manages_id','fans_gender','city'];
- static function getCompanyList(){
- return self::get();
- }
-
- }
|