NA +91-8727899942 thecoderjob@gmail.com

CHAPTER - 8

Controller

First interect with http request and display the view or any database calculation.

Command :  php artisan make:controller controler-name

Here's is the Code !!

<?php
 
namespace AppHttpControllers;
 
use AppModelsUser;
use IlluminateViewView;
 
class UserController extends Controller
{
    /**
     * Show the profile for a given user.
     */
    public function show(string $id): View
    {
        return view("user.profile");
    }
}

Chapter 7

Routing with example

Previous chapter

Chapter 9

Component

Next chapter

Get In Touch

NA

thecoderjob@gmail.com

+91-8727899942

Popular Links

© www.thecoderjob.com. All Rights Reserved.               Designed by HTML Codex