initial commit
This commit is contained in:
19
app/Models/Payment.php
Normal file
19
app/Models/Payment.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Payment extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'card_number',
|
||||
'cvv',
|
||||
'expiration_year',
|
||||
'expiration_month',
|
||||
'order_id',
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user