Files
cheerstothe_season_2.0/app/Models/ManageReferralRule.php
sayaliparab deb6ae0488 rulereferral
2024-07-22 16:02:15 +05:30

20 lines
362 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ManageReferralRule extends Model
{
use HasFactory;
protected $table='manage_referral_rules';
protected $fillable=[
'id ',
'title',
'message',
'created_at',
'updated_at'
];
}