first commit

This commit is contained in:
f4ilji
2024-09-19 16:06:49 +05:00
commit b686638a39
1664 changed files with 428174 additions and 0 deletions
@@ -0,0 +1,17 @@
<?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);
}
}