Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Nov 15, 2024
1 parent fec9920 commit 357926f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Models/OrderCods.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace NexaMerchant\CheckoutCod\Models;

use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Model;
use NexaMerchant\CheckoutCod\Contracts\OrderCod as OrderCodContract;

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

}

0 comments on commit 357926f

Please sign in to comment.