Back in the day, parameters were sent to applications with GET parameters with the question mark (?). Nowadays, parameters can be more intuitive and readable. Routes may receive parameters, and you may also pass these parameters to the next layer on your controller. From there, you may pass these parameters to the model and finally to the view. In this video, learn how to send and receive parameters within your routes.
- [Instructor] So now that we have directed our route…to certain controller methods,…we want to send parameters to these routes,…which should be sent through the url.…In the past we would use GET parameters…by using the question mark to denote variables.…However, in the context of Frameworks,…we can now pass parameters separated by the slash symbol.…So for example, to get the details of a client,…whose ID is four,…we could use the url client slash four.…
This style is more intuitive…and helps make urls more readable.…The way to go is…to surround our parameters with curly braces.…So let's create a new route for client details…and add our client ID.…Go to web dot php…and let's copy line 17 and paste it.…We'll change to get…and we're going to add a new parameter with curly braces.…
Client underscore ID and the method…is going to change to show.…Now let's create our method show in the client's controller…with public function, show.…Now let's add the parameter as client underscore ID.…While we're not obliged…to name the parameter client underscore ID,…
Author
Released
8/24/2017- Laravel file and folder structure
- Dependency injection
- Routing requests to controllers
- Loading a view
- Creating a basic Blade template
- Sending data to a view
- Creating and validating forms
- Integrating a database
- Modifying data with Eloquent
- Returning data to a Laravel view
- Adding relational data and concurrent connections
Skill Level Intermediate
Duration
Views
Related Courses
-
PHP: Creating Secure Websites
with Kevin Skoglund4h 15m Intermediate -
Ajax with PHP: Add Dynamic Content to Websites
with Kevin Skoglund3h 37m Intermediate -
MVC Frameworks for Building PHP Web Applications
with Drew Falkman2h 57m Intermediate -
Learning Symfony 3
with Bernardo Pineda1h 46m Intermediate
-
Introduction
-
Welcome49s
-
What you should know1m 8s
-
Using the exercise files1m 57s
-
-
1. Getting Started with Laravel
-
What is Laravel?2m 17s
-
Get a copy of Laravel2m 54s
-
Artisan for developers4m 33s
-
Dependency injection6m 15s
-
Service providers2m 50s
-
Facades and their utility4m 34s
-
-
2. Controlling an Application
-
Routing to controllers5m 16s
-
Loading a view5m 12s
-
3. Views and Blade
-
Send data to a view5m 57s
-
Create forms4m 23s
-
Process form data5m 13s
-
Form validation: Back end2m 36s
-
Form validation: Front end4m 47s
-
4. Introducing Eloquent
-
Introduction to Eloquent2m 48s
-
Set up a database3m 37s
-
Database migrations8m 12s
-
Models in Laravel4m 7s
-
Select data with Eloquent5m 21s
-
Modify data with Eloquent2m 51s
-
Relations in Eloquent5m 49s
-
Select data with raw queries7m 39s
-
Return data to the view7m 4s
-
Add relational data7m 20s
-
Concurrent connections6m 39s
-
-
Conclusion
-
Next steps43s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Sending parameters to a controller