added file upload for both company profile picture and registration certificate

This commit is contained in:
Aqeeb Imtiaz Harun
2018-05-07 11:11:57 +08:00
parent 6c5e0b6e0e
commit 2da890f36e
9 changed files with 85 additions and 19 deletions
+1 -1
View File
@@ -7,6 +7,6 @@ use Illuminate\Database\Eloquent\Model;
class Company extends Model
{
//
protected $fillable = ['company_profile', 'company_name', 'registration_no', 'tax_no', 'tel_no', 'fax', 'address', 'city', 'postcode', 'state', 'country', 'contact_person'];
protected $fillable = ['company_profile', 'reg_cert', 'company_name', 'registration_no', 'tax_no', 'tel_no', 'fax', 'address', 'city', 'postcode', 'state', 'country', 'contact_person'];
//protected $guarded = [];
}