31 lines
799 B
PHP
31 lines
799 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PartnerShip extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = "partnership";
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'true_copy_of_partnership_deed',
|
|
'registration_certificate',
|
|
'pan_card',
|
|
'list_of_partners_or_authorised_signatories',
|
|
'pan_card_copy_of_authorized_signatory',
|
|
'aadhar_card_copy_of_authorized_signatory',
|
|
'tan_allotment_letter',
|
|
'proof_of_address_firm',
|
|
'latestIincome_tax_return_of_the_firm',
|
|
'copy_of_cml',
|
|
'copy_of_audited_balance_sheet_for_last',
|
|
'passport_photo_authorized_signatories_partners',
|
|
'cancelled_cheque'
|
|
];
|
|
}
|