Files
ntspi-app/app/Services/Filament/Icon/ArrayToCollectionService.php
2024-09-19 16:06:49 +05:00

17 lines
366 B
PHP

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