Changed location of product edit Blade template in module

This commit is contained in:
Christopher Di Carlo 2018-06-03 11:49:30 -04:00
parent 3eb40e652f
commit b4740d93fb

View File

@ -42,7 +42,7 @@
</div>
@foreach(Module::getOrdered() as $module)
@if(View::exists($module->alias . '::accounts.product'))
@if(View::exists($module->alias . '::products.edit'))
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class="panel panel-default">
@ -53,7 +53,7 @@
</h3>
</div>
<div class="panel-body form-padding-right">
@includeIf($module->alias . '::accounts.product')
@includeIf($module->alias . '::products.edit')
</div>
</div>
</div>