Laravel 8 tutorial in Hindi - Controller

preview_player
Показать описание
in this laravel video tutorial, we learn what is the breaking changes in version 8 and how to overcome it. we will talk about controller calling syntax laravel project. this video is made by anil Sidhu in the Hindi language

we also learn new update which is coming with laravel 8th version
steps of this video
Controller Calling syntax change
Make Controller
Call Controller from Routing
Make Function in Controller
Interview Question.
Рекомендации по теме
Комментарии
Автор

Thank you soo much i have started watching your videos and it is amazing thanks bro i will share your channel to my friends

ujefmalek
Автор

yes, it is possible to make controller manually.Inside controller folder write controller name with caps letter.Then define controller page inside route folder by " use " keyword.

surajpurakait
Автор

Great sir.. aapki video ek bar dekhne ke bad humesa ke liye dekhni nhi padti

royal_rafik_vlogs
Автор

yes we can simply create a new file in controller folder, and after adding namespace, and class initialization we can start

khalsdhusaen
Автор

Thankyu sir, your tutorial is very useful for me.

inrsr
Автор

Yes manually controller bnana possible ha, inside http/controller folder simple controller ka name dy kr php file bna lein or us file ma main code add kr dein like some important name spaces and class name with same file name, thats it.

Roman-rofj
Автор

Yes, sir bna sakte hai manual controller bi but usme define krna padega name space, page location or classes or function bnane pdege..

budget-products
Автор

Yes, we can create controller manually by creating new file in controllers folder and add your code in it

birsingh
Автор

yes sir ham manualy controller bana skte he jesse view file banate he vese
bs hamko namespace define krna hota he or use ye define krna pdega

kaziovesh
Автор

Yes we can make our own controller manually simple extend by controller our controller class

asharnoman
Автор

Yes we can able to create the controller in App/Http/controller directory

jigneshpatel
Автор

Yes, we can make controller same like view but may be error possibility accure

dineshrajN
Автор

Why it is necessory to define controller or any element in array for routing ?

nayakyash
Автор

Sir, kindly laravel + reactjs py ak video bna dein. I know rractjs but dont know how to use with laravel.

Roman-rofj
Автор

Hi sir, I followed your code here . But it’s not working, can u tell me the issue ? Please
The error is, target class doesn’t exist !

mnuman
Автор

Jrur hm bna sakte hai hum kisi bi controller file ki copy bna krke use rename and controller ka name ko arrange Krna hoga

webdevelopement
Автор

Yes sir, we can make new controller without using command prompt..just right click on controller and add controller as you want!!

_rahulrajodiya
Автор

yes we can create controller direct in folder

Allama.M.Sarfraz
Автор

Yes you can create your own controller but your class should be extend from Controller e.g class TempController extends Controller

muhammadarish
Автор

yes sir, we can create controller manually .
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;


class UserController extends Controller {
//
}

jayprajput