PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Console
/
Seeds
<?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); } }
[-] SeedCommand.php
[edit]
[+]
..
[-] SeederMakeCommand.php
[edit]
[-] WithoutModelEvents.php
[edit]
[+]
stubs