for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* Require */
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
/* Models */
use Bantenprov\Prestasi\Models\Bantenprov\Prestasi\Prestasi;
class BantenprovPrestasiSeederPrestasi extends Seeder
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
Model::unguard();
$prestasis = (object) [
(object) [
'label' => 'Prestasi 1',
'description' => 'Prestasi 1',
],
'label' => 'Prestasi 2',
'description' => 'Prestasi 2',
]
];
foreach ($prestasis as $prestasi) {
$model = Prestasi::updateOrCreate(
[
'label' => $prestasi->label,
'description' => $prestasi->description,
);
$model->save();
}
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.