28 lines
753 B
PHP
28 lines
753 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Outhers extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'others';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'proof_of_identity_pan_card',
|
|
'addressproof_bank_statement_or_utility_bill',
|
|
'certificate_of_registration',
|
|
'list_of_authorised_signatories',
|
|
'pan_card_copy_of_authorized_signatory',
|
|
'aadhar_card_copy_of_authorized_signatory',
|
|
'cancelled_cheque',
|
|
'cml_copy',
|
|
'latest_income_tax_return',
|
|
'copy_of_audited_balance_sheet_for_the_last_2_F_Y',
|
|
'passport_photo_signed_authorized_signatories_or_directors'
|
|
];
|
|
}
|