mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 20:44:13 +00:00
c902c8db82
fixed DB not found in rate controller
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Rate extends Model
|
|
{
|
|
protected $fillable = ['x1_cash','x1_cheque','x1_ba','x2_cash','x2_cheque','x2_ba'];
|
|
protected $hidden = ['id'];
|
|
}
|