Current File : /home/tradevaly/ladybagcollection.com/project/app/Models/Coupon.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Coupon extends Model
{
    protected $fillable = ['code', 'type', 'price', 'times', 'start_date','end_date'];
    public $timestamps = false;
}