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\VueOpd\Models\Bantenprov\VueOpd\VueOpd;
class BantenprovVueOpdSeederVueOpd 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();
$model = new VueOpd;
$file = file_get_contents(public_path('json/bantenprov/vue-opd/vue-opd-data.json'));
$json = json_decode($file, true);
$vue_opds = array_get($json, '2.data');
$model::truncate();
DB::table($model->getTable())->insert(
$vue_opds
);
}
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.