<?php
namespace App\Http\Controllers\Api;
use Illuminate\Support\Facades\Storage;
class RegionController extends Controller
{
public function index(): array
return json_decode(Storage::disk('local')->get('region.json'), true);
}