17 lines
289 B
PHP
17 lines
289 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Nova\Inventory;
|
|
|
|
use App\Models\Ecommerce\Product\Inventory\Inventory;
|
|
|
|
class InventoryRepository
|
|
{
|
|
/**
|
|
* Inventory repository values
|
|
*/
|
|
public static function values(): array
|
|
{
|
|
return Inventory::pluck('name', 'id');
|
|
}
|
|
}
|