@extends('layouts.shop') @section('content') @include('partials.breadcrumbs', [ 'items' => [ ['label' => 'Админка', 'url' => route('admin.dashboard')], ['label' => 'Заказы', 'url' => null], ], ])

Заказы

@if ($orders->isEmpty())

Заказов пока нет.

@else @endif
{{ $orders->links() }}
@endsection