Files
ntspi-app/app/Services/Filament/Icon/ArrayToCollectionService.php
2026-03-20 21:47:02 +05:00

17 lines
366 B
PHP
Executable File

<?php
namespace App\Services\Filament\Icon;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\File;
class ArrayToCollectionService
{
public static function all()
{
$jsString = file_get_contents(resource_path('js/Components/other/icons.json'));
$array = json_decode($jsString, true);
return collect($array);
}
}