Created Manufacturer Model
This commit is contained in:
@@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Models;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Manufacturer extends Model
|
||||||
|
{
|
||||||
|
// Manufacturer Model
|
||||||
|
protected $table = 'manufacturers';
|
||||||
|
|
||||||
|
protected $fillable = [
|
||||||
|
'name',
|
||||||
|
'description',
|
||||||
|
'website',
|
||||||
|
'logo'
|
||||||
|
];
|
||||||
|
|
||||||
|
// Manufacturer has many filaments
|
||||||
|
public function filaments()
|
||||||
|
{
|
||||||
|
return $this->hasMany(Filament::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Manufacturer has many filament types
|
||||||
|
public function filamentTypes()
|
||||||
|
{
|
||||||
|
return $this->hasMany(FilamentType::class);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user