Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOps School!
Learn from Guru Rajesh Kumar and double your salary in just one year.

The controller interacts with the model and the view. It means we write business logic in the controller
Make a Controller
StudentsController.php
Code
php artisan make:controller StudentsController
Result

Call with routine
web.php
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
Route::get("users", 'StudentsControllers@index');

Pass Parameter
StudentController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class UserControllers extends Controller
{
public function index($id)
{
echo $id;
}
}
Results:

Leave a Reply