Laravel 7.2 Best Practices Database Queries

·

, ,
Laravel 7.2 routing with route group auth guard check with prefix

Hello to all, welcome to therichpost.com. In this post, I will tell, Laravel 7.2 Best Practices Database Queries.

Here are the some basics laravel database queries easy to understand. Laravel is the best php mvc framework.

1. Laravel Eloquent Insert Query :

// I am doing this in controller file

//Employees -->Modal Name
$employees = new Employees;
$employees->name = $request->name;
$employees->email = $request->email;
$employees->phone = $request->phone;
$employees->gender = $request->gender;
$employees->save();

 

2. Laravel Eloquent Select Query  and output will be json format:

//I am using this in controller file

//Employees -->Modal Name

Employees::all();

 

3. Laravel Eloquent Delete Query :

//I am doing this in controller file

//Employees -->Modal name
Employees::where('id',$request->id)->delete();

 

4. Laravel Eloquent Update Query :

//I am doing this in controller


//Employees -->Modal name

$employees = Employees::find($request->id);
$employees->name = $request->name;
$employees->email = $request->email;
$employees->phone = $request->phone;
$employees->gender = $request->gender;
$employees->save();

 

If you have any kind of query then please do comment below.

Jassa

Thank you

Comments

5 responses to “Laravel 7.2 Best Practices Database Queries”

  1. Jackwander Avatar
    Jackwander

    You can do this also in insert.
    Employees::create([$request]);
    Only if the payloads of form you’ve submitted and the table column name are identical.

  2. Bernard Avatar
    Bernard

    Can u write an article to show how u can perform CRUD with types of laravel relation .

  3. Bernard Avatar
    Bernard

    I mean laravel relationship

  4. Ajay Malhotra Avatar

    Yes sure @bernard.