Blog

Check our advices for tech
Create a Model with Migration: If you want to create a database table for your model, use the -m or --migration option: php artisan make:model ModelName This will generate a migration file in the database/migrations/ directory. Edit the migration file to define your table schema. Create a Controller: To create a resourceful controller (with CRUD methods), use the --resource or -r option: php artisan make:controller ModelController...
Read More
Packages: composer require symfony/maker-bundle --dev composer require security composer require orm composer require twig composer require form validator composer require symfonycasts/verify-email-bundle symfony/mailer composer require symfonycasts/reset-password-bundle Start and configure your database on the .env file. DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/!DatabaseName!?serverVersion=10.4.32-MariaDB&charset=utf8mb4"
Read More
1 6 7 8 9 10 11