diff --git a/app/DataTables/Shop/PriceGenericCategoriesDataTable.php b/app/DataTables/Shop/PriceGenericCategoriesDataTable.php new file mode 100644 index 00000000..b96c9d90 --- /dev/null +++ b/app/DataTables/Shop/PriceGenericCategoriesDataTable.php @@ -0,0 +1,26 @@ +title('Nom'), + self::makeColumnButtons(), + ]; + } + +} diff --git a/resources/views/Shop/Admin/PriceGenericCategories/create.blade.php b/resources/views/Shop/Admin/PriceGenericCategories/create.blade.php new file mode 100644 index 00000000..7d5a4812 --- /dev/null +++ b/resources/views/Shop/Admin/PriceGenericCategories/create.blade.php @@ -0,0 +1,13 @@ +@extends('layout.index', [ + 'title' => __('price_generic_categories.title'), + 'subtitle' => __('price_generic_categories.create.title'), + 'breadcrumb' => [__('price_generic_categories.title'), __('price_generic_categories.create.title')] +]) + +@section('content') + + {{ Form::open(['route' => 'Shop.Admin.PriceGenericCategories.store', 'id' => 'price-generic-category-form', 'autocomplete' => 'off']) }} + @include('Shop.Admin.PriceGenericCategories.form') + + +@endsection diff --git a/resources/views/Shop/Admin/PriceGenericCategories/edit.blade.php b/resources/views/Shop/Admin/PriceGenericCategories/edit.blade.php new file mode 100644 index 00000000..c898ea4b --- /dev/null +++ b/resources/views/Shop/Admin/PriceGenericCategories/edit.blade.php @@ -0,0 +1,14 @@ +@extends('layout.index', [ + 'title' => __('price_generic_categories.title'), + 'subtitle' => __('price_generic_categories.edit.title'), + 'breadcrumb' => [__('price_generic_categories.title'), __('price_generic_categories.edit.title')] +]) + +@section('content') + + {{ Form::open(['route' => 'Shop.Admin.PriceGenericCategories.store', 'id' => 'price-generic-category-form', 'autocomplete' => 'off']) }} + + @include('Shop.Admin.PriceGenericCategories.form') + + +@endsection diff --git a/resources/views/Shop/Admin/PriceGenericCategories/form.blade.php b/resources/views/Shop/Admin/PriceGenericCategories/form.blade.php new file mode 100644 index 00000000..bd3fe4eb --- /dev/null +++ b/resources/views/Shop/Admin/PriceGenericCategories/form.blade.php @@ -0,0 +1,14 @@ +