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