<?php use Illuminate\Support\Facades\Route; use Spatie\LaravelIgnition\Http\Controllers\ExecuteSolutionController; use Spatie\LaravelIgnition\Http\Controllers\HealthCheckController; use Spatie\LaravelIgnition\Http\Controllers\UpdateConfigController; use Spatie\LaravelIgnition\Http\Middleware\RunnableSolutionsEnabled; Route::group([ 'as' => 'ignition.', 'prefix' => config('ignition.housekeeping_endpoint_prefix'), 'middleware' => [RunnableSolutionsEnabled::class], ], function () { Route::get('health-check', HealthCheckController::class)->name('healthCheck'); Route::post('execute-solution', ExecuteSolutionController::class) ->name('executeSolution'); Route::post('update-config', UpdateConfigController::class)->name('updateConfig'); });
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Commands | Folder | 0755 |
|
|
ContextProviders | Folder | 0755 |
|
|
Exceptions | Folder | 0755 |
|
|
Facades | Folder | 0755 |
|
|
FlareMiddleware | Folder | 0755 |
|
|
Http | Folder | 0755 |
|
|
Recorders | Folder | 0755 |
|
|
Renderers | Folder | 0755 |
|
|
Solutions | Folder | 0755 |
|
|
Support | Folder | 0755 |
|
|
Views | Folder | 0755 |
|
|
IgnitionServiceProvider.php | File | 11.66 KB | 0644 |
|
helpers.php | File | 531 B | 0644 |
|
ignition-routes.php | File | 799 B | 0644 |
|