|
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Promotion extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'promotions';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'last_user_id',
|
|
'till_date',
|
|
];
|
|
} |