@extends('adminlte::page') @section('title', 'Ordenar Bebidas' . ' | ' . config('app.name')) @section('content_header')
@php $breadcrumbs = [ ['name' => 'Inicio', 'route' => 'dashboard', 'icon' => 'fa-home'], ['name' => 'Bebidas', 'route' => 'bebidas.index'], ['name' => 'Ordenar Bebidas'], ]; @endphp
@stop @section('content')
Ordenar Bebidas

Arrastra y suelta para cambiar el orden de las Bebidas.

@foreach ($cartas as $carta)
{{ $carta->translate(app()->getLocale())->nombre }}
{{-- Bebidas sin subcarta --}} @if ($carta->bebidas->count())
    @foreach ($carta->bebidas as $bebida)
  • {{ $bebida->translate(app()->getLocale())->nombre }} @if (!$bebida->activo) Inactiva @endif
  • @endforeach
@endif {{-- Bebidas por subcarta --}} @foreach ($carta->subCartas as $sub)
{{ $sub->translate(app()->getLocale())->nombre }}
    @foreach ($sub->bebidas as $bebida)
  • {{ $bebida->translate(app()->getLocale())->nombre }} @if (!$bebida->activo) Inactiva @endif
  • @endforeach
@endforeach
@endforeach
@stop @section('css') @stop @push('js') @endpush