resolved issues

This commit is contained in:
shubhammehrotra.symfony@webkul.com 2020-01-16 13:37:36 +05:30
parent 81d9d34acc
commit 497271fa04
3 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -21,4 +21,5 @@ package-lock.json
yarn.lock
.php_cs.cache
storage/
storage/*.key
storage/*.key
/resources/themes/velocity/*

View File

@ -1,6 +1,7 @@
<?php
use Illuminate\Database\Seeder;
use Webkul\Velocity\Database\Seeders\VelocityMetaDataSeeder;
use Webkul\Admin\Database\Seeders\DatabaseSeeder as BagistoDatabaseSeeder;
class DatabaseSeeder extends Seeder
@ -13,5 +14,6 @@ class DatabaseSeeder extends Seeder
public function run()
{
$this->call(BagistoDatabaseSeeder::class);
$this->call(VelocityMetaDataSeeder::class);
}
}

View File

@ -14,7 +14,7 @@ class VelocityMetaDataSeeder extends Seeder
DB::table('velocity_meta_data')->insert([
'id' => 1,
'home_page_content' => "<p>@include('shop::home.advertisements.advertisement-one')@include('shop::home.featured-products') @include('shop::home.advertisements.advertisement-two') @include('shop::home.new-products') @include('shop::home.advertisements.advertisement-three')</p>",
'home_page_content' => "<p>@include('shop::home.advertisements.advertisement-four')@include('shop::home.featured-products') @include('shop::home.advertisements.advertisement-three') @include('shop::home.new-products') @include('shop::home.advertisements.advertisement-two')</p>",
'footer_left_content' => trans('velocity::app.admin.meta-data.footer-left-raw-content'),