-
Home | Naidim
Submitted by naidim
on Fri, 10/21/2016 - 15:43
When working with CakePHP it is important to remember "Convention over Configuration." If you start from the bottom, or back end, the...
-
Laravel 10 Tutorial 6: Routes | Naidim
Laravel 10 Tutorial 6: Routes
Routes are how you tell your Laravel application what to do when a URL path is requested. Your web routes are contained in
/routes/web.php. The default route identifies...
-
Laravel 10 Tutorial 7: Controllers and Views | Naidim
Laravel 10 Tutorial 7: Controllers and Views
With our database created and data seeded, we should now do something with that data. While our Model is the interface to the Database, the Controller all...
-
database | Naidim
Now that your application is up and running, it is time to build your data store and interface with that data. We have two options here: We can create the database tables using Migrations or directly ...
-
CakePHP 5 Tutorial 1: Application Setup | Naidim
CakePHP 5 Tutorial 1: Application Setup
When I learn new things, I like to document what I'm doing to reiterate to myself what I've learned, to keep track of my progress and catch errors, and hopeful...
-
Laravel 10 Tutorial 4: Seeders | Naidim
Laravel 10 Tutorial 4: Seeders
Seeders are way to put data immediately into your tables. All you need to do is populate an array, then use that array to create rows in your table. You can use this da...