@extends('templates.default') @section('css') @endsection @section('nav')
  • Home
  • Entregas
  • @endsection @section('title_right') @endsection @section('content')
    {{ Form::select('estado', array('T' => 'Todos','A' => 'Activo', 'I' => 'Inactivo'), (isset($inputs['estado'])?$inputs['estado']:null), array('class' => 'form-control')) }}
    @foreach($entregas as $e) @endforeach
    Código Estado Envío Fecha Emisión
    Entrega-{{ $e->id }} {{ $e->getEstadoDisplay() }} {{ $e->envio->numero_manifiesto }} {{ $e->created_at }}
    {{ $entregas->appends(Input::except('page'))->links() }}
    @endsection @section('js-footer') {{ HTML::script('js/lightbox.js') }} @endsection