Basic Routing
You will define most of the routes for your application in the app/Http/routes.php file, which […]
You will define most of the routes for your application in the app/Http/routes.php file, which […]
For adding routes in routes.php we need to add different routes with their equivalent view […]
We can capture segments of the request URI within out route.php. Example Output URL : […]
We may use Regular Expression [0-9]+ to accept and parse out routing URL for numbers […]
We may use Regular Expression [[A-Za-z]+]+ to accept and parse out routing URL for alphabets […]
In order to create a custom MVC in laravel we have to define : route […]
You can generate our Controller via a simple command-line artisan command : Example After execution […]
Here we are creating a table class and then migrating this class to our database […]
In order to insert data in database tables we may use classes to migrate database […]
Data from controllers to views may be passed from different methods in Laravel, here we […]
In the following example we are creating our first example with blade template engine. Directory […]
Laravel 5 Blade Templating allows you to create master pages and then inherit this layout […]
Following example showing for loop using Blade Templating. Example Output The current value is 0 […]
When we have to create a controller in laravel 5, we use command but the […]
For getting commands help for artisan, we may pass help argument with the command syntax. […]
We’ll talk about how to use one of Laravel’s lesser-known features to quickly read data […]