File "PayJunctionPayments.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/app/Models/PayJunctionPayments.php
File size: 279 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PayJunctionPayments extends Model
{
use HasFactory;
protected $table = "payments";
protected $guarded = [
"_token",
];
}