
- Home
-
HTML
HTML Introduction HTML Tags HTML Elements HTML Attributes HTML Heading HTML Paragraph HTML Formatting HTML Quotations HTML Comments HTML Styles HTML Color HTML CSS HTML Images HTML Favicon HTML Links HTML DIV HTML Tables HTML Table Size HTML Table Head Table Padding & Spacing Table colspan rowspsn HTML Table Styling HTML Colgroup HTML List HTML Block & Inline HTML Classes HTML Id HTML Iframes HTML Head HTML Layout HTML Semantic Elements HTML Style Guide HTML Forms HTML Form Attribute HTML Form Element HTML input type HTML Computer code HTML Entity HTML Symbol HTML Emojis HTML Charset HTML Input Form Attribute HTML URL Encoding
-
CSS
CSS Introduction CSS Syntax CSS Selector How To Add CSS CSS Comments CSS Colors CSS Background color CSS background-image CSS Borders CSS Margins CSS Height, Width and Max-width CSS Box Model CSS Outline CSS Text CSS Fonts CSS Icon CSS Links CSS Tables CSS Display CSS Maximum Width CSS Position z-index Property
- JavaScript
-
JQuery
What is jQuery? Benefits of using jQuery Include jQuery Selectors. Methods. The $ symbol and shorthand. Selecting elements Getting and setting content Adding and removing elements Modifying CSS and classes Binding and Unbinding events Common events: click, hover, focus, blur, etc Event delegation Using .on() for dynamic content Showing and hiding elements Fading elements in and out Sliding elements up and down .animate() Understanding AJAX .ajax() .load(), .get(), .post() Handling responses and errors. Parent Chlid Siblings Filtering Elements Using find Selecting form elements Getting form values Setting form values Form validation Handling form submissions jQuery plugins Sliders plugins $.each() $.trim() $.extend() Data attributes Debugging jQuery code
-
Bootstrap 4
What is Bootstrap Benefits of using Setting up Container Row and Column Grid Classes Breakpoints Offsetting Columns Column Ordering Basic Typography Text Alignment Text colors Backgrounds Display Font Size Utilities Buttons Navs and Navbar Forms Cards Alerts Badges Progress Bars Margin Padding Sizing Flexbox Dropdowns Modals Tooltips Popovers Collapse Carousel Images Tables Jumbotron Media Object
- Git
-
PHP
PHP Introduction PHP Installation PHP Syntax PHP Comments PHP Variable PHP Echo PHP Data Types PHP Strings PHP Constant PHP Maths PHP Number PHP Operators PHP if else & if else if PHP Switch PHP Loops PHP Functions PHP Array PHP OOps PHP Class & Object PHP Constructor PHP Destructor PHP Access Modfiers PHP Inheritance PHP Final Keyword PHP Class Constant PHP Abstract Class PHP Superglobals PHP Regular Expression PHP Interfaces PHP Static Method PHP Static Properties PHP Namespace PHP Iterable PHP Form Introduction PHP Form Validation PHP Complete Form PHP Date and Time PHP Include Files PHP - Files & I/O File Upload PHP Cookies PHP SESSION PHP Filters PHP Callback Functions PHP JSON PHP AND Exceptions PHP Connect database
-
MY SQL
SQL Introduction Syntax Select statement Select Distinct WHERE Clause Order By SQL AND Operator SQL OR Operator SQL NOT Operator SQL LIKE SQL IN SQL BETWEEN SQL INSERT INTO SQL NULL Values SQL UPDATE SQL DELETE SQL TOP, LIMIT, FETCH FIRST or ROWNUM Clause SQL MIN() and MAX() Functions SQL COUNT() Function SQL SUM() SQL AVG() SQL Aliases SQL JOIN SQL INNER JOIN SQL LEFT JOIN SQL RIGHT JOIN SQL FULL OUTER JOIN SQL Self Join SQL UNION SQL GROUP BY SQL HAVING SQL EXISTS SQL ANY and ALL SQL SELECT INTO SQL INSERT INTO SELECT SQL CASE SQL NULL Functions SQL Stored Procedures SQL Comments SQL Operators SQL CREATE DATABASE SQL DROP DATABASE SQL BACKUP DATABASE SQL CREATE TABLE SQL DROP TABLE SQL ALTER TABLE SQL Constraints SQL NOT NULL SQL UNIQUE Constraint SQL PRIMARY KEY SQL FOREIGN KEY SQL CHECK Constraint SQL CREATE INDEX SQL AUTO INCREMENT SQL Dates SQL Views SQL Injection SQL Hosting SQL Data Types
Laravel Model: Everything You Need to Know 🚀
In Laravel, Models are used for interacting with the database. They represent database tables and allow us to perform CRUD (Create, Read, Update, Delete) operations using Eloquent ORM.
1. What is a Model in Laravel?
A Model is a class that connects to a specific database table and allows you to interact with its records.
✅ Example: A User
model interacts with the users
table.
📄 File: app/Models/User.php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
use HasFactory;
}
2. Creating a Model
To create a model, use the Artisan command:
php artisan make:model Product
This creates:
📄 app/Models/Product.php
To create a model with migration:
php artisan make:model Product -m
This also creates a migration file in database/migrations/
.
3. Database Table Mapping
By default, Laravel maps the model name to a table name (plural form).
✅ Example:
- Model:
Product
- Table:
products
If your table name is different, define it manually:
📄 File: app/Models/Product.php
class Product extends Model
{
protected $table = 'items'; // Custom table name
}
4. Mass Assignment Protection ($fillable
& $guarded
)
To allow mass assignment, define $fillable or $guarded:
✅ Using $fillable
(Recommended)
class Product extends Model
{
protected $fillable = ['name', 'price', 'description'];
}
✅ Using $guarded
(Alternative)
class Product extends Model
{
protected $guarded = []; // Allows all fields
}
5. Performing CRUD Operations with Eloquent
Create (Insert Data)
Product::create([
'name' => 'Laptop',
'price' => 50000,
'description' => 'A high-performance laptop'
]);
Read (Get Data)
$products = Product::all(); // Get all products
$product = Product::find(1); // Find by ID
$expensive = Product::where('price', '>', 30000)->get(); // Filter
Update (Modify Data)
$product = Product::find(1);
$product->price = 55000;
$product->save();
Or use mass update:
Product::where('id', 1)->update(['price' => 55000]);
Delete (Remove Data)
$product = Product::find(1);
$product->delete();
Or directly:
Product::destroy(1); // Delete by ID
Product::where('price', '<', 1000)->delete(); // Delete by condition
6. Model Relationships
Eloquent makes handling relationships between models easy.
One-to-One Relationship
📄 File: User.php
class User extends Model
{
public function profile()
{
return $this->hasOne(Profile::class);
}
}
One-to-Many Relationship
📄 File: Post.php
class Post extends Model
{
public function comments()
{
return $this->hasMany(Comment::class);
}
}
Many-to-Many Relationship
📄 File: User.php
class User extends Model
{
public function roles()
{
return $this->belongsToMany(Role::class);
}
}
7. Soft Deletes (Keeping Deleted Records)
To enable soft deletes, add the SoftDeletes
trait:
📄 File: app/Models/Product.php
use Illuminate\Database\Eloquent\SoftDeletes;
class Product extends Model
{
use SoftDeletes;
}
Run migration to add the deleted_at
column:
php artisan make:migration add_deleted_at_to_products_table --table=products
Now, instead of permanently deleting a record, Laravel marks it as deleted.
✅ Soft Delete
$product->delete(); // Moves to trash
✅ Restore Soft Deleted Record
Product::withTrashed()->where('id', 1)->restore();
✅ Force Delete (Permanent)
$product->forceDelete();
8. Query Scopes (Reusable Filters)
Scopes allow you to reuse queries across your project.
📄 File: Product.php
class Product extends Model
{
public function scopeExpensive($query)
{
return $query->where('price', '>', 50000);
}
}
✅ Use in Controller
$expensiveProducts = Product::expensive()->get();
Conclusion
✅ Laravel Models make database interactions simple with Eloquent ORM.
✅ Define database structure using $fillable
or $guarded
.
✅ Use Eloquent methods for CRUD operations.
✅ Establish relationships like One-to-One, One-to-Many, and Many-to-Many.
✅ Use Soft Deletes and Query Scopes for advanced functionality.
🚀 Need help with Laravel? Let’s build something amazing! 😊
At Online Learner, we're on a mission to ignite a passion for learning and empower individuals to reach their full potential. Founded by a team of dedicated educators and industry experts, our platform is designed to provide accessible and engaging educational resources for learners of all ages and backgrounds.
Copyright 2023-2025 © All rights reserved.