This commit is contained in:
mchev
2026-03-21 18:59:53 +01:00
parent 186ab35fd4
commit c901114fc0
232 changed files with 685 additions and 403 deletions

View File

@@ -5,17 +5,19 @@ namespace App\Http\Controllers\V1\Modules;
use App\Http\Controllers\Controller;
use App\Services\Module\ModuleFacade;
use DateTime;
use Illuminate\Http\Response;
use Illuminate\Support\Arr;
use Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class StyleController extends Controller
{
/**
* Serve the requested stylesheet.
*
* @return \Illuminate\Http\Response
* @return Response
*
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
* @throws NotFoundHttpException
*/
public function __invoke(Request $request, string $style)
{