Subscribe to:
Comments (Atom)
Call Factory and make multiple record entry Using tinker
$d = Factory(App\Department::class,3)->create(); > $d = Factory(App\Department::class, 10)->create(); = Illuminate\Database\Eloqu...
-
We can pass the data to the view using help function with ( ) compact ( ) Using With Route :: get ( '/greet' , function () { ...
-
Syntax : php artisan make:model ModelNmae . This command will create a model with ModelName. During the model creation, we can create a see...