Files
backend-mm/app/Repositories/Nova/Inventory/InventoryRepository.php
2025-09-25 03:03:31 +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');
}
}