Просмотр файла app/Controllers/StickerController.php

Размер файла: 783B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Controllers;
  6.  
  7. use App\Models\Sticker;
  8. use App\Services\View;
  9. use Psr\Http\Message\ResponseInterface as Response;
  10.  
  11. /**
  12. * StickerController
  13. */
  14. class StickerController extends Controller
  15. {
  16. public function __construct(
  17. protected View $view,
  18. ) {}
  19.  
  20. /**
  21. * Modal stickers
  22. *
  23. * @param Response $response
  24. *
  25. * @return Response
  26. */
  27. public function modal(Response $response): Response
  28. {
  29. $stickers = Sticker::query()->get()->pluck('path', 'code');
  30.  
  31. $view = $this->view->fetch(
  32. 'stickers/_modal',
  33. compact('stickers')
  34. );
  35.  
  36. return $this->json($response, [
  37. 'success' => true,
  38. 'stickers' => $view,
  39. ]);
  40. }
  41. }