18 lines
329 B
PHP
18 lines
329 B
PHP
<?php
|
|
|
|
namespace App\Models\Shop;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class InventoryPlace extends Model
|
|
{
|
|
protected $guarded = ['id'];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function Inventories()
|
|
{
|
|
return $this->hasMany('App\Models\Inventory');
|
|
}
|
|
} |