PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Console
/
Seeds
/
Editing: WithoutModelEvents.php
<?php namespace Illuminate\Database\Console\Seeds; use Illuminate\Database\Eloquent\Model; trait WithoutModelEvents { /** * Prevent model events from being dispatched by the given callback. * * @param callable $callback * @return callable */ public function withoutModelEvents(callable $callback) { return fn () => Model::withoutEvents($callback); } }
SAVE
CANCEL