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\GarisKemiskinan\Models\Bantenprov\GarisKemiskinan\GarisKemiskinan;
class BantenprovGarisKemiskinanSeederGarisKemiskinan 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();
$garis_kemiskinans = (object) [
(object) [
'label' => 'G2G',
'description' => 'Goverment to Goverment',
],
'label' => 'G2E',
'description' => 'Goverment to Employee',
'label' => 'G2C',
'description' => 'Goverment to Citizen',
'label' => 'G2B',
'description' => 'Goverment to Business',
];
foreach ($garis_kemiskinans as $garis_kemiskinan) {
$model = GarisKemiskinan::updateOrCreate(
[
'label' => $garis_kemiskinan->label,
'description' => $garis_kemiskinan->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.