first commit

This commit is contained in:
2024-04-16 15:43:24 +05:45
commit b49e06fa93
4387 changed files with 543889 additions and 0 deletions

View 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"]);
}
}