новости в админке для логин скрина

This commit is contained in:
2026-03-15 17:04:31 +04:00
parent d4880d2f05
commit 835f795a48
13 changed files with 699 additions and 2 deletions
@@ -0,0 +1,17 @@
<?php
namespace App\Http\Controllers;
use App\Services\LoginScreenNewsService;
use Illuminate\Http\Response;
class WowLoginNewsFeedController extends Controller
{
public function show(LoginScreenNewsService $news): Response
{
return response($news->renderFeed(), 200, [
'Content-Type' => 'text/plain; charset=UTF-8',
'Cache-Control' => 'no-store, no-cache, must-revalidate, max-age=0',
]);
}
}