@extends('templates.default') @section('css') {{ HTML::style('css/datepicker.css') }} {{ HTML::style('css/select2.css') }} {{ HTML::style('css/select2-bootstrap.css') }} @endsection @section('nav')
  • Home
  • Orden de Entrega
  • Consultar
  • @endsection @section('content') @if($errors->count() > 0)
    @endif
    {{EntregaField::entrega(array('name' => 'entrega', 'valor_id' => (isset($orden_entrega)?$orden_entrega->id:null)))}}


    @if(isset($orden_entrega))
    {{ Form::token() }} {{ $form->id }}
    {{ Form::textarea('descripcion', '',array('placeholder' => 'Descripción la notificación.','class' => 'form-control', 'size' => '10x3')); }}
    @if(isset($detalles_entrega) && sizeof($detalles_entrega) > 0)

    @foreach($detalles_entrega as $d) @endforeach
    Secuencia Fecha Descripcion
    {{ $d->secuencia }} {{ $d->fecha_notificacion }} {{ $d->descripcion }}
    @elseif(isset($detalles_entrega) && sizeof($detalles_entrega) == 0)

    @endif

    @else

     Para Notificar primero seleccione una orden de entrega


    @endif @endsection @section('js-footer') {{ HTML::script('js/contacto.js') }} {{ HTML::script('js/bootstrap-datepicker.js') }} {{ HTML::script('js/jquery.maskedinput.min.js') }} {{ HTML::script('js/select2.min.js') }} @endsection