Php artisan make:model
- how to use model in laravel
- how to use model in laravel controller
- how to use model in blade laravel
- how to use model function in controller laravel
Laravel model events...
Laravel | Eloquent Model Basics
Laravel is an MVC based PHP framework. In MVC architecture, ‘M’ stands for ‘Model’. A Model is basically a way for querying data to and from the table in the database.
Laravel model attributes
Laravel provides a simple way to do that using Eloquent ORM (Object-Relational Mapping). Every table has a Model to interact with the table.
Create a Model: To create an Eloquent Model, Laravel provides an Artisan Command as follows:
php artisan make:model ArticleAfter running the command above, a file is created with the name Article.php in the app directory.
The file content looks as follows:
Retrieve Data: To retrieve data from the database, we can use two methods as described below:
- Here, the all() method will return all the data in the table in the form of an array and store it in the $articles variable.
public function index() { $articles = \App\Article::all(); return view('gfg')->with('articles', $articles); }
- We can also get a particular record by using ‘where()’ as shown below: public function index() { $articles = \App\Article:
- how to insert data using model in laravel
- how to update data using model in laravel