Files
larablog/app/Http/Controllers/LegacyGoneController.php
T
ak 263b98b218 Initial baseline: LaraBlog core with plugin commerce surface.
Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
2026-08-12 01:15:38 +08:00

20 lines
402 B
PHP

<?php
declare(strict_types=1);
namespace App\Http\Controllers;
use Illuminate\Http\Response;
class LegacyGoneController extends Controller
{
public function __invoke(): Response
{
return response(
'This legacy endpoint is gone (Trackback/WAP/old admin are not supported).',
410,
['Content-Type' => 'text/plain; charset=UTF-8']
);
}
}