paymentservice/app/Models/PaymentRefund.php

12 lines
184 B
PHP
Raw Permalink Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PaymentRefund extends Model
{
protected $table = 'payment_refunds';
protected $guarded = ['id'];
}