Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011121314151617181920 |
- <?php
-
- namespace App\Traits;
-
- use Illuminate\Support\Facades\Auth;
-
- trait Blamable
- {
- public static function bootBlamable(): void
- {
- static::creating(static function ($model) {
- $model->created_by = Auth::check() ? Auth::id() : null;
- $model->updated_by = Auth::check() ? Auth::id() : null;
- });
-
- static::updating(static function ($model) {
- $model->updated_by = Auth::check() ? Auth::id() : null;
- });
- }
- }
|