resolved issues
This commit is contained in:
parent
81d9d34acc
commit
497271fa04
|
|
@ -21,4 +21,5 @@ package-lock.json
|
|||
yarn.lock
|
||||
.php_cs.cache
|
||||
storage/
|
||||
storage/*.key
|
||||
storage/*.key
|
||||
/resources/themes/velocity/*
|
||||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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'),
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue