Probleme de squelette

symfony 4 (https://www.grafikart.fr/tutoriels/routing-1065) et à ma grande stupeur je bloque au bout de 2Min de video .... J'ai bien suivi la méthode pour installer Symfony mais je n'obtiens

3
Probleme d'enregistrement de fichier image

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\Form\Extension\Core\Type\FileType; class MediaType extends AbstractType { /** * @param FormBuilderInterface $builder * @param

2
Fusioner 2 formulaires.

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Routing\Annotation\Route; use App\Form\SocieteType; use App\Entity\Societe; class SocieteController extends AbstractController { /** * @Route("/societe

2
Condition pour faire apparetre les champs twigs

Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; class SocieteType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('adresse') ->add('ville

1
Gestion utilisateurs

Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Security\Http\Authentication\AuthenticationUtils; Class SecurityController extends AbstractController{ /** * @Route("/login", name

1
Problème avec une méthode getLetter "non définie" Doctrine/ORM/Query

Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\DependencyInjection\ContainerInterface; class CalculNutriscoreCommand

1
formulaire synfony 3

Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Session\Session; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Vendor\ConnectUsersBundle\Entity\Users; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony

3
crud

Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Request; /** * Commande controller. * */ class CommandeController extends Controller { /** * Lists all commande entities. * */ public function indexAction() { $em = $this->getDoctrine()->getManager(); $commandes = $em->getRepository

2
[résolu] Création d'un type form personnalisé

Symfony\Bridge\Doctrine\Form\ChoiceList\ORMQueryBuilderLoader; use Symfony\Component\Form\Exception\UnexpectedTypeException; use Symfony\Component\OptionsResolver\Options; use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Bridge\Doctrine\Form\Type\EntityType; class

1
SwiftMailer

Symfony\Component\HttpFoundation\Response; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\Routing\Annotation\Route; use Doctrine\Common\Persistence\ObjectManager; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Security

0