ServiceController.php 512 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Http\Controllers;
  3. /*
  4. * ServiceController — детальная страница услуги.
  5. * GET /services/{slug}
  6. * 404 если услуга не найдена или неактивна.
  7. */
  8. use App\Models\Service;
  9. use Illuminate\View\View;
  10. class ServiceController extends Controller
  11. {
  12. public function show(string $slug): View
  13. {
  14. $service = Service::active()->where('slug', $slug)->firstOrFail();
  15. return view('pages.service', compact('service'));
  16. }
  17. }