[WIP] Refactor project

This commit is contained in:
Ludovic CANDELLIER
2021-05-21 00:21:05 +02:00
parent f4ab8e71a8
commit 64abc46d99
347 changed files with 14104 additions and 1608 deletions

View File

@@ -1,21 +1,11 @@
@extends('layout.index', [
'title' => __('Shop.article_families.title'),
'subtitle' => __('Shop.article_families.list'),
'breadcrumb' => [__('Shop.article_families.title')]
'title' => __('Shop.orders.title'),
'subtitle' => __('Shop.orders.list'),
'breadcrumb' => [__('Shop.orders.title')]
])
@section('content')
<div class="row pb-3">
<div class="col text-right">
<a href="{{ route('Shop.Admin.ArticleFamilies.create') }}" class="btn btn-sm btn-success">{{ __('Shop.Admin.ArticleFamilies.add') }} <i class="fa fa-plus"></i></a>
</div>
</div>
{{$dataTable->table()}}
@component('components.card')
@include('components.datatable', ['route' => route('Shop.Admin.Orders.index'), 'model' => 'orders'])
@endcomponent
@endsection
@push('scripts')
@include('components.js.datatable', ['route' => '/Shop/Admin/ArticleFamilies', 'model' => 'articlefamilies'])
@endpush