@extends('superadmin.layouts.app')
@section('title', 'Ordini')
@section('content')
@if (method_exists(App\Models\Order\Order::class, 'getSortingAttributes'))
@include('superadmin.partials.sorting-dropdown', [ 'attributes' => App\Models\Order\Order::getSortingAttributes() ])
@endif
@if (method_exists(App\Models\Order\Order::class, 'getCsvColumns'))
@include('superadmin.partials.export-button', [ 'exportable' => App\Models\Order\Order::class ])
@endif
@component('components.scroll-pagination', [
'action' => action('Superadmin\OrdersController@index'),
'last_page' => $orders->lastPage()
])
| DATA |
N° ORDINE |
RIFERIMENTO CLIENTE |
TOTALE |
SPECIAL TOTALE |
CODICE |
SHOP |
EUROBONUS |
@endcomponent
@endsection