Refactoring, change menu, add many features

This commit is contained in:
Ludovic CANDELLIER
2021-10-30 02:22:51 +02:00
parent fae7b7897f
commit e356b3fcda
158 changed files with 1114 additions and 412 deletions

View File

@@ -1,15 +1,12 @@
@extends('layout.index', [
'title' => __('sale_channels.title'),
'subtitle' => __('sale_channels.edit'),
'breadcrumb' => ['SaleChannel']
'title' => __('shop.sale_channels.title'),
'subtitle' => __('shop.sale_channels.edit'),
'breadcrumb' => [__('shop.sale_channels.title')]
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.SaleChannels.store', 'id' => 'sale_channels-form', 'autocomplete' => 'off']) }}
<input type="hidden" name="id" value="{{ $sale_channel['id'] }}">
@include('Admin.Shop.SaleChannels.form')
</form>
@endsection