This commit is contained in:
cjd
2026-02-05 22:22:10 +08:00
parent fef9fe0c31
commit bf3a2e6971
273 changed files with 30605 additions and 0 deletions

3
web10/storage/app/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*
!public/
!.gitignore

2
web10/storage/app/public/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*
!.gitignore

9
web10/storage/framework/.gitignore vendored Normal file
View File

@@ -0,0 +1,9 @@
compiled.php
config.php
down
events.scanned.php
maintenance.php
routes.php
routes.scanned.php
schedule-*
services.json

View File

@@ -0,0 +1,3 @@
*
!data/
!.gitignore

View File

@@ -0,0 +1,2 @@
*
!.gitignore

View File

@@ -0,0 +1,2 @@
*
!.gitignore

View File

@@ -0,0 +1,2 @@
*
!.gitignore

View File

@@ -0,0 +1,2 @@
*
!.gitignore

2
web10/storage/logs/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*
!.gitignore

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,9 @@
<?php
require __DIR__ . '/../../vendor/autoload.php';
$app = require __DIR__ . '/../../bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
$pm = app(Livewire\Mechanisms\PersistentMiddleware\PersistentMiddleware::class);
$middlewares = $pm->getPersistentMiddleware();
var_dump(in_array(Filament\Http\Middleware\SetUpPanel::class, $middlewares, true));
var_dump($middlewares);

View File

@@ -0,0 +1,10 @@
<?php
require __DIR__ . '/../../vendor/autoload.php';
$app = require __DIR__ . '/../../bootstrap/app.php';
$request = Illuminate\Http\Request::create('/livewire/update', 'POST');
$app->instance('request', $request);
$app->make(Illuminate\Contracts\Http\Kernel::class)->bootstrap();
$registry = app(Livewire\Mechanisms\ComponentRegistry::class);
var_dump($registry->getClass('filament.pages.auth.login'));

View File

@@ -0,0 +1,11 @@
<?php
require __DIR__ . '/../../vendor/autoload.php';
$app = require __DIR__ . '/../../bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
$panel = Filament\Facades\Filament::getDefaultPanel();
Filament\Facades\Filament::setCurrentPanel($panel);
$panel->boot();
$pages = $panel->getPages();
var_export($pages);

View File

@@ -0,0 +1,10 @@
<?php
require __DIR__ . '/../../vendor/autoload.php';
$app = require __DIR__ . '/../../bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
$panels = Filament\Facades\Filament::getPanels();
foreach ($panels as $id => $panel) {
echo "panel:$id\n";
print_r($panel->getPages());
}

View File

@@ -0,0 +1,6 @@
<?php
require __DIR__ . '/../../vendor/autoload.php';
$app = require __DIR__ . '/../../bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
var_dump(app('router')->has('filament.admin.pages.site-settings'));