BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
app
/
Http
/
Controllers
📤 Upload
📝 New File
📁 New Folder
Close
Editing: FontsController.php
<?php namespace App\Http\Controllers; use App\Services\Common\FontsService; use GuzzleHttp\Exception\GuzzleException; use Illuminate\Http\JsonResponse; use JsonException; class FontsController extends Controller { /** * @throws GuzzleException * @throws JsonException */ public function updateFontsCache(): JsonResponse { $dump = FontsService::updateFontsCache(); return response()->json(['success' => true]); } }
Save
Cancel