14 lines
374 B
PHP
14 lines
374 B
PHP
<?php
|
|
namespace App;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class C2cMerchant extends Model
|
|
{
|
|
protected $table = 'c2c_merchant';
|
|
protected $fillable = [
|
|
'name','logo','available_qty','min_amount','max_amount','unit_price',
|
|
'crypto_currency','fiat_currency','payment_methods','rating',
|
|
'contact_type','contact_link','status','sort'
|
|
];
|
|
}
|