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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							| 12345678910111213141516171819202122 | 
							- <?php
 - 
 - namespace App\Traits;
 - 
 - use Illuminate\Support\Facades\Auth;
 - 
 - trait Blamable
 - {
 -     public static function bootBlamable(): void
 -     {
 -         $auth = Auth::check() ? Auth::id() : null;
 - 
 -         static::creating(static function ($model) use ($auth) {
 -             $model->created_by = $auth;
 -             $model->updated_by = $auth;
 -         });
 - 
 -         static::updating(static function ($model) use ($auth) {
 -             $model->updated_by = $auth;
 -         });
 -     }
 - }
 
 
  |