Files
alliance-services/app/Models/SRP/Payouts.php
2026-03-10 02:10:28 -05:00

28 lines
423 B
PHP

<?php
namespace App\Models\SRP;
use Illuminate\Database\Eloquent\Model;
class Payouts extends Model
{
// Table Name
protected $table = 'srp_payouts';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'code',
'payout',
];
}