0% found this document useful (0 votes)
10 views1 page

Symfony

Uploaded by

dhaouadi.eya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views1 page

Symfony

Uploaded by

dhaouadi.eya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

symfony new FirstProject --version=”6.4.

*” --webapp

symfony server:status <(verifier le status de serveur)

symfony console make:controller ServiceController

Symfony console doctrine:database:create //creation de la BD

Symfony console make:entity Biblio3A8 //creation d'une entité

Symfony console make:migration //creation d'une migration

Symfony console doctrine:migrations:migrate //execution d'une migration

****************************************************************************
<table border=4>
<tr>
<td>Id</td>
<td>Username</td>
</tr>
{% for author in authors %}
<tr>
<td>{{ author.id }} </td>
<td>{{ author.username | upper }} </td>
<td><img src="{{asset(author.picture)}} alt="Author Picture"></td>
</tr>
{% endfor %}

</table>
*****************************************************************************

You might also like