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