first commit
This commit is contained in:
21
app/iChambaParameter.php
Normal file
21
app/iChambaParameter.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use App\Models\Suppliers;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class iChambaParameter extends Model
|
||||
{
|
||||
//
|
||||
protected $fillable = [
|
||||
'parameter',
|
||||
'num_value',
|
||||
'string_value',
|
||||
];
|
||||
|
||||
public function suppliers()
|
||||
{
|
||||
return $this->hasMany(Suppliers::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user