Skip to content

Commit

Permalink
fix the db table name
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Nov 15, 2024
1 parent e706d7d commit 6edef3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Config/CheckoutCod.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
*
* The version of the package
*/
'version' => '1.0.7',
'version' => '1.0.8',
/**
*
* The version number of the package
*/
'versionNum' => '107',
'versionNum' => '108',

/**
*
Expand Down
3 changes: 2 additions & 1 deletion src/Models/OrderCod.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@

class OrderCod extends Model implements OrderCodContract
{
private $table = 'order_cods';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['ip_address', 'ip_country'];
protected $fillable = ['order_id','ip_address', 'ip_country'];

}

0 comments on commit 6edef3f

Please sign in to comment.