Here, i will show you how to works laravel 8 model events example. you can see model events in laravel 8. i would like to share with you eloquent model events laravel 8. I’m going to show you about laravel 8 model events created. follow bellow step for laravel 8 model events updated.
Laravel provide list of eloquent model events and each model event have it’s own function. it’s very helpful. i love laravel eloquent model events.
Sometime, we need to add unique number or create slug from title then before create record you need to update this fields at time we can use those time of event. same thing when you update records then also you have to update slug and might when remove records then also you have to delete child records. so event is very helpful and i will say you must have to use when you need this type of situation.
I will explain few important events with example so you will understand how it works and how you can use it.
In this example, i will write down creating, created, updating, updated and deleted events and i will show you one by one example with output in log file so you can easily understand, how model events works.
Create Product Model with events
Here, we will create product model with events. so let’s create and put bellow code:
app/Models/Product.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Log;
use Str;
class Product extends Model
{
use HasFactory;
protected $fillable = [
'name', 'slug', 'detail'
];
/**
* Write code on Method
*
* @return response()
*/
public static function boot() {
parent::boot();
/**
* Write code on Method
*
* @return response()
*/
static::creating(function($item) {
Log::info('Creating event call: '.$item);
$item->slug = Str::slug($item->name);
});
/**
* Write code on Method
*
* @return response()
*/
static::created(function($item) {
/*
Write Logic Here
*/
Log::info('Created event call: '.$item);
});
/**
* Write code on Method
*
* @return response()
*/
static::updating(function($item) {
Log::info('Updating event call: '.$item);
$item->slug = Str::slug($item->name);
});
/**
* Write code on Method
*
* @return response()
*/
static::updated(function($item) {
/*
Write Logic Here
*/
Log::info('Updated event call: '.$item);
});
/**
* Write code on Method
*
* @return response()
*/
static::deleted(function($item) {
Log::info('Deleted event call: '.$item);
});
}
}
Now here, we will simply call one by one model method and let’s see output:
Create Record: Creating and Created Event
app/Http/Controllers/ProductController.php
<?php
namespace App\Http\Controllers;
use App\Models\Product;
use Illuminate\Http\Request;
class ProductController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
Product::create([
'name' => 'silver',
'detail' => 'This is silver'
]);
dd('done');
}
}
Output Log File:
[2020-10-20 14:37:26] local.INFO: Creating event call: {"name":"silver","detail":"This is silver"}
[2020-10-20 14:37:26] local.INFO: Created event call: {"name":"silver","detail":"This is silver","slug":"silver","updated_at":"2020-10-20T14:37:26.000000Z","created_at":"2020-10-20T14:37:26.000000Z","id":5}
Update Record: Updating and Updated Event
app/Http/Controllers/ProductController.php
<?php
namespace App\Http\Controllers;
use App\Models\Product;
use Illuminate\Http\Request;
class ProductController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
Product::find(5)->update([
'name' => 'silver updated',
'detail' => 'This is silver'
]);
dd('done');
}
}
#laravel #php #web-development #programming #developer