PHP MVC Framework - Laravel

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:28 AM on 4/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

What is laravel ?

It is a modern PHP framework used to build web applications quickly and securely

It provides the wr .

2
New cards

Why laravel is used ?

  • Saves deployment time

  • Provides ready-made features

  • Clean and structured code

  • Built-in security

3
New cards

MVC Architecture (Core concept)

MVC = Model + View + Controller

Model:

  • It handles data and databases

Interact with tables

Ex: User::all();

View:

  • What the user sees (UI)

  • Written in HTML + Blade (Laravel Template engine)

<h1>Welcome, Byam</h1>

Controller:

It act as a middleman.


Take request → processes → return response

public funtion index(){
      return view('home');
}

4
New cards

What is the flow of MVC?

  • The user sends a request.

  • The route sends it to the controller.

  • The controller talks to the model.

  • The model returns data.

  • The controller sends data to view.

  • View shows output.

5
New cards

What is the enviroment setup?

It is an environment setup, which means preparing your system so you can run laravel projects smoothly

  • Installing required software

  • Setting up laravel

  • Running your first project

6
New cards

System Requirement

Before installing Laravel, make sure the system has:

  1. PHP through XAMPP

  2. Composer : Tools to manage PHP Packages

  3. Web Server

  4. Database

7
New cards

What do you mean by routing?

Routing means defining how you application response to different URL’s

8
New cards

What are the types of Route ?

  • Basic Route

  • HTTP Method Routes

  • Named Routes

  • Route Groups

  • Route w/ Controller

9
New cards

Basic Routes

  • Simplest type of route

  • Directly returns something

Route::get('/', function () {
    return "Welcome";
});

10
New cards

HTTP Method Routes

Laravel supports different request types:

Get:

Route::get('/home', function () {
    return "Home Page";
});

Post:

Route::post('/submit', function () {
    return "Form Submitted";
});

Put:

Route::put('/update', function () {
    return "Updated";
});

Delete:

Route::delete('/delete', function () {
    return "Deleted";
});

11
New cards

Named Routes

Assign a name to route

Route::get('/home', function () {
    return "Home";
})->name('home');

12
New cards

Route Groups

Groups multiple routes together

Route::prefix('admin')->group(function () {
    Route::get('/dashboard', function () {
        return "Admin Dashboard";
    });
});

13
New cards

Route with controller

Instead of writing logic in route, use a controller.

Route::get('/users', [UserController::class, 'index']);

Explore top notes

note
PRENATAL DEVELOPMENT
Updated 1221d ago
0.0(0)
note
CGO casus 1
Updated 444d ago
0.0(0)
note
Ancient Philosophers
Updated 1149d ago
0.0(0)
note
2.8 The Early Baroque Period
Updated 1220d ago
0.0(0)
note
Chapter 13: The Sectional Crisis
Updated 1286d ago
0.0(0)
note
Weathering, Soil, and Mass Wasting
Updated 1168d ago
0.0(0)
note
PRENATAL DEVELOPMENT
Updated 1221d ago
0.0(0)
note
CGO casus 1
Updated 444d ago
0.0(0)
note
Ancient Philosophers
Updated 1149d ago
0.0(0)
note
2.8 The Early Baroque Period
Updated 1220d ago
0.0(0)
note
Chapter 13: The Sectional Crisis
Updated 1286d ago
0.0(0)
note
Weathering, Soil, and Mass Wasting
Updated 1168d ago
0.0(0)

Explore top flashcards

flashcards
HFrEF Treatment
94
Updated 474d ago
0.0(0)
flashcards
Chapter 26
75
Updated 721d ago
0.0(0)
flashcards
Biopsychology -
62
Updated 583d ago
0.0(0)
flashcards
unit 3 ap hug
56
Updated 1211d ago
0.0(0)
flashcards
Psychology AOS Research Methods
51
Updated 303d ago
0.0(0)
flashcards
MI Quiz 1.4, 2.1, 2.2
58
Updated 1149d ago
0.0(0)
flashcards
HFrEF Treatment
94
Updated 474d ago
0.0(0)
flashcards
Chapter 26
75
Updated 721d ago
0.0(0)
flashcards
Biopsychology -
62
Updated 583d ago
0.0(0)
flashcards
unit 3 ap hug
56
Updated 1211d ago
0.0(0)
flashcards
Psychology AOS Research Methods
51
Updated 303d ago
0.0(0)
flashcards
MI Quiz 1.4, 2.1, 2.2
58
Updated 1149d ago
0.0(0)