10 lines
408 B
PHP
10 lines
408 B
PHP
<?php
|
|
namespace App;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class IeoProject extends Model
|
|
{
|
|
protected $table = 'ieo_project';
|
|
protected $fillable = ['name','symbol','description','whitepaper_url','thumb_image','token_price','total_supply','min_buy','max_buy','start_time','end_time','type','status','fake_progress','real_sold','subscription_limit','announce_time','listing_time','unlock_time'];
|
|
}
|