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

Arrastra y suelta para cambiar el orden de los alergenos.

    @foreach ($alergenos as $alergeno)
  • {{ $alergeno->translate(app()->getLocale())->nombre }} @if (!$alergeno->activo) Inactivo @endif
  • @endforeach
@stop @section('css') @stop @push('js') @endpush