Files
2026-05-08 20:49:37 +05:00

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');
}
}