first commit
This commit is contained in:
31
database/seeders/SettingsSeeder.php
Normal file
31
database/seeders/SettingsSeeder.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Modules\Models\Setting\Setting;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class SettingsSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
Setting::create(['slug'=>'APP_LOGO','value'=>"https://storage.googleapis.com/bib-cdn/Bibhuti-LMS-2.png"]);
|
||||
Setting::create(['slug'=>'APP_NAME','value'=>"Bibhuti LMS"]);
|
||||
Setting::create(['slug'=>'APP_DESC','value'=>"Simple yet powerful Leads Management System"]);
|
||||
Setting::create(['slug'=>'APP_AUTHOR','value'=>"Bibhuti Solutions"]);
|
||||
Setting::create(['slug'=>'AUTHOR_CONTACT','value'=>"+9775706765"]);
|
||||
Setting::create(['slug'=>'SMS_API','value'=>""]);
|
||||
Setting::create(['slug'=>'SMS_TOKEN','value'=>""]);
|
||||
Setting::create(['slug'=>'SMS_FROM','value'=>""]);
|
||||
Setting::create(['slug'=>'PROJECT_TITLE','value'=>"Bibhuti LMS"]);
|
||||
Setting::create(['slug'=>'PROJECT_DESC','value'=>"Simple yet powerful Leads Management System"]);
|
||||
Setting::create(['slug'=>'PROJECT_ADDRESS','value'=>"Anamnagar, Kathmandu, Nepal"]);
|
||||
Setting::create(['slug'=>'PROJECT_MAP','value'=>"https://goo.gl/maps/LXfpWFuAsfitv58W7"]);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user