Skip to content

Tag: php

Laravel seeder for table that is hardcoded

I have several tables in my database that are simply used for reference in my application. For example, a table that has two columns, State and State Abbreviation, and has all 50 states and their abbreviations as rows. I want to write seeders for these tables in Laravel, since I want these tables to exist whe…

Rendering multiple forms on same page with Symfony 3

I’d like to show a login and a registration form on the same page. However it seems that we cannot render the same template with different form variables in different two actions in a controller. Here is what I mean; } Above I have my login and registration action. I’d like to pass the ‘form…