Kontynuacja lekcji poprzedniej. Poznajemy Symfony, popularny framework w języku PHP. Do dzieła.

Ok, zrobimy sobie taką metodę:

#[Route('/micro_post/{id}', name: 'app_micro_post_show')]
    public function showOne(int $id, MicroPostRepository $repository): Response
    {
        
        return $this->render('micro_post/single.html.twig', [
            'post' => $repository->find($id),
        ]);
    }

Teraz tylko trzeba zrobić twig template:

{% extends 'base.html.twig' %}

{% block title %}Hello MicroPostController!{% endblock %}

{% block body %}
<style>
    .example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
    .example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
</style>

<div class="example-wrapper">
    {% if post %}
    
      <h3>{{ post.title }}</h3>
      <p>{{post.content}}</p>
   {% else %}
            <p>No such post</p>
    {% endif %}
</div>
{% endblock %}

Ok, działa, wyświetla jak należy. Zróbmy jeszcze sobie linki w index do tego:

<div class="example-wrapper">
    {% if posts|length > 0 %}
    {% for post in posts %}
      <h3><a href="{{ path('app_micro_post_show', { id: post.id }) }}">{{ post.title }}<a/></h3>
      <p>{{post.content}}</p>
    {% endfor %}
  {% else %}
            <p>No posts</p>
    {% endif %}
</div>
{% endblock %}

Teraz mamy działające linki. Więcej Symfony w następnych lekcjach.