@extends('template.layoutAdmin', ['activeButton'=>'productos'])
@section('cabecera')
{{ trans('promociones.platoPromocion') }}
@endsection
@section('style')
@endsection
@section('title')
{{ trans('promociones.platoPromocionCrear') }}
@endsection
@section('contenido')
@if(Session::has('message'))
😉 {{Session::get('message')}} 😉
@endif
@if(Session::has('message_error'))
😓 {{Session::get('message_error')}} 😒
@endif
@if(count($errors) > 0)
{{ trans('promociones.corregirErrores') }}
@foreach ($errors->all() as $message)
- {{ $message }}
@endforeach
@endif
{{ trans('promociones.seleccionarPlato') }}
{{ trans('promociones.nombre') }} |
{{ trans('promociones.precio') }} |
{{ trans('promociones.descuento') }} |
{{ trans('promociones.valorTotal') }} |
{{ trans('promociones.opciones') }} |
{{-- modal agregar plato --}}
{{ trans('promociones.platos') }} |
@endsection
@section('js')
@endsection