| Current Path : /home/zada/public_html/app/Models/ |
| Current File : /home/zada/public_html/app/Models/PaymentInformation.php |
<?php
namespace App\Models;
use App\Traits\PreventDemoModeChanges;
use Illuminate\Database\Eloquent\Model;
class PaymentInformation extends Model
{
use PreventDemoModeChanges;
protected $guarded = [];
protected $table = "payment_informations";
}