File: /var/www/javago-portal-updates/app/Models/CafeManageLoyaltyStamp.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CafeManageLoyaltyStamp extends Model
{
use HasFactory;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'manage_loyalty_stamps';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'stamp_color',
'stamp_no',
'cafe_id',
'discount_type',
'discount',
'min_order_value',
'offer_text',
'created_at',
'updated_at',
'is_universal',
'stamp_expires_in',
'stamp_applicable_to_categories',
];
}