123456789101112131415161718 |
- <?php
- namespace App\Transfer;
- use Illuminate\Database\Eloquent\Model;
- class InnovatorCategory extends Model
- {
- protected $connection = "transfer_center";
- protected $table = "qs_innovator_category";
- protected $guarded = [];
- }
|