Studio: make grid checkbox rectangular and commit table changes

This commit is contained in:
2026-03-01 08:43:48 +01:00
parent 211dc58884
commit e3ca845a6d
89 changed files with 7323 additions and 475 deletions

View File

@@ -11,6 +11,18 @@ final class HandleInertiaRequests extends Middleware
{
protected $rootView = 'upload';
/**
* Select the root Blade view based on route prefix.
*/
public function rootView(Request $request): string
{
if (str_starts_with($request->path(), 'studio')) {
return 'studio';
}
return $this->rootView;
}
public function version(Request $request): ?string
{
return parent::version($request);