<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class PaymentWithCreditCard extends Model
{
    protected $table = 'payment_with_credit_card';

    protected $fillable =[

        "payment_id", "customer_id", "customer_stripe_id", "charge_id"
    ];
}
