10 lines
272 B
PHP
10 lines
272 B
PHP
<?php
|
|
namespace App;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class OptionPair extends Model
|
|
{
|
|
protected $table = 'option_pair';
|
|
protected $fillable = ['currency_match_id','symbol','coinname','profit_rate','fee_rate','min_amount','max_amount','status','weigh'];
|
|
}
|