File: /var/www/vhost/disk-apps/teamdemo.sports-crowd.com/database/seeds/DocumentAnalyticSeeder.php
<?php
use App\ReportPower;
use Illuminate\Database\Seeder;
class DocumentAnalyticSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
if (!ReportPower::where('name', 'Reporte Documentos Firmados')->first()) {
ReportPower::updateOrCreate(
['name' => 'Reporte Documentos Firmados'],
[
'name' => 'Reporte Documentos Firmados',
'URL' => config('app.url') . '/document_analytics',
]
);
}
}
}