31 lines
992 B
PHP
31 lines
992 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class UserCompanyKyc extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = "company";
|
|
protected $fillable = [
|
|
'user_id',
|
|
'memorandum_or_articles_of_association',
|
|
'company_pan',
|
|
'certificate_of_incorporation',
|
|
'tan_allotment_letter',
|
|
'List_of_directors_or_authorized_signatories',
|
|
'pan_card_copy_of_authorized_signatory',
|
|
'aadhar_card_copy_of_authorized_signatory',
|
|
'proof_of_address_of_the_company',
|
|
'latest_income_tax_return_of_the_company_Of_last_2_years',
|
|
'copy_of_cml',
|
|
'copy_of_audited_balance_sheet_for_the_last_2_f_y',
|
|
'passport_photo_all_authorized_signatories_or_directors',
|
|
'true_copy_form_32_or_dir_12_alongwith_roc_fee_payment',
|
|
'true_copy_form_no_18_or_inc_22_alongwith_roc_fee_payment',
|
|
'cancelled_cheque'
|
|
];
|
|
}
|