Add tariff unities management

This commit is contained in:
Ludovic CANDELLIER
2022-01-22 19:26:35 +01:00
parent 6f04a8e7b7
commit f35650b234
15 changed files with 261 additions and 27 deletions

View File

@@ -0,0 +1,14 @@
@extends('layout.index', [
'title' => __('shop.tariff_unities.title'),
'subtitle' => __('shop.tariff_unities.edit'),
'breadcrumb' => [__('shop.tariff_unities.title'), __('shop.tariff_unities.edit')]
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.TariffUnities.store', 'id' => 'tariff_unity-form', 'autocomplete' => 'off']) }}
<input type="hidden" name="id" value="{{ $tariff_unity['id'] ?? null }}">
@include('Admin.Shop.TariffUnities.form')
</form>
@endsection