Laravel 8 Routing Example Tutorial
Teams applying “Laravel 8 Routing Example Tutorial” in a production project can use the related Monitask article to record implementation, review and debugging time, then compare that effort with tests and shipped functionality instead of treating activity as performance by itself.
Before copying the example into a live application, confirm version-specific behaviour with the official Laravel website and test it against the project’s actual database and runtime.
Hi Guys,
Today,I will explain you step by step laravel 8 routing tutorial. I will learn how to create new route in laravel 8. you can easily create post route in laravel 8 application. i will also show how to create route in laravel 8 controller.
We will step by step process of how to create first route in laravel and understanding of laravel routing with brief.
What is Laravel Routing?
Using Routing you can create a request URL for your application. you can design set of HTTP request like POST Request, GET Request, PUT Request and DELETE Request using routing in laravel 8.
You can easily create route in web.php file inside a routes folder. in web.php file you can create your route list there are several ways. i will show you bellow step by step how you can create it and how it works, so let's see step by step explanation.
Create Simple Route:
Now, I will create very simple route and will let you know how you can access it. so let's create simple route using following line adding in route file:
routes/web.php
Route::get('simple-route', function () {
return 'This is Simple Route Example of nicesnippets.com';
});
Access URL:
http://localhost:8000/simple-route
Route with Call View File:
You can create route with directly call view blade file from route directly. You can see bellow created route example:
you may use the Route::view method. Like the redirect method, this method provides a simple shortcut so that you do not have to define a full route or controller. The view method accepts a URI as its first argument and a view name as its second argument. In addition, you may provide an array of data to pass to the view as an optional third argument:
routes/web.php
Route::view('/blog', 'index');
Route::view('/blog', 'index', ['name' => 'nicesnippets']);
resources/views/index.php
<h1>his is Simple Route with Call View File Example of nicesnippets.com</h1>
Access URL:
http://localhost:8000/blog
Route with Controller Method:
Here, you can create route with call controller method so, you can simply create controller method and call that method with your route as like bellow:
routes/web.php
use App\Http\Controllers\PostController;
// PostController
Route::get('/post', [PostController::class, 'index']);
app/Http/Controllers/PostController.php
<?php
namespace App\Http\Controllers;
class PostController extends Controller
{
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
return view('index');
}
}
resources/views/index.php
<h1>his is Simple Route with Controller Method Example of nicesnippets.com</h1>
Access URL:
http://localhost:8000/post
Create Route with Parameter:
Here, we will create simple route with passing parameters. you can can create dynamic route with your controller. so let's create as bellow
routes/web.php
use App\Http\Controllers\PostController;
// PostController
Route::get('/post/{id}', [PostController::class, 'show']);
app/Http/Controllers/PostController.php
<?php
namespace App\Http\Controllers;
class PostController extends Controller
{
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function show($id)
{
return 'Post ID:'. $id;
}
}
Access URL:
http://localhost:8000/post/15
Create Route Methods:
You can create get, post, delete, put, patch methods route as bellow i created. you can understand how it works.
So, let's see bellow route examples:
use App\Http\Controllers\UserController;
// UserController
Route::get('users', '[UserController::class, 'index']');
Route::post('users', '[UserController::class, 'post']');
Route::put('users/{id}', '[UserController::class, 'update']');
Route::delete('users/{id}', '[UserController::class, 'delete']');
You can also check how many routes i created using following command:
php artisan route:list
You can also create resource routes as i written tutorial on it. You can see here: Create Resource Routes in Laravel.
- How to Notifications With database Driver in Laravel 11?
- How to Send Email Via Notification in Laravel 11?
- How to Install and Configure Laravel 11 Debugbar?
- How to Like Dislike System in Laravel 11?
- How to Paginate a Model with Relationship in Laravel 11?
- Laravel 11 Upload Files to Amazon S3 Example
- Laravel 11 Send WhatsApp Messages Example
- Laravel 11 Rest API Authentication Using JWT Tutorial