1234567891011121314151617181920212223 |
- <?php
- namespace App\Transfer;
- use Illuminate\Database\Eloquent\Model;
- class HelpCategory extends Model
- {
- protected $connection = "transfer_center";
- protected $table = "qs_help_category";
- protected $guarded = [];
- public function helps()
- {
- return $this->hasMany(Help::class, 'type_id', 'id');
- }
- }
|