diff --git a/app/Models/StockCompany.php b/app/Models/StockCompany.php index 813aa88..44d6ed8 100644 --- a/app/Models/StockCompany.php +++ b/app/Models/StockCompany.php @@ -4,14 +4,7 @@ namespace App\Models; class StockCompany extends SoftDeletesModel { - protected $fillable = [ - 'admin_id', - 'department_id', - 'company_name', - 'stock_date', - 'enrollment_date', - 'is_after_enrollment', - ]; + public $table = 'stock_companys'; protected $appends = ['is_after_enrollment_text'];