@extends('templates.default') @section('css') @endsection @section('nav')
  • Home
  • Contenedores
  • @endsection @section('title_right') @endsection @section('content')
    {{ Form::select('tipo', array( 'todos'=>"Todos", '20STD'=>'20" STANDARD', '40STD'=>'40" STANDARD', '20HCB'=>'20" HIGH CUBE', '40HCB'=>'40" HIGH CUBE', '20OPT'=>'20" OPEN TOP', '20BLK'=>'20" BULK', '20FLT'=>'20" FLAT', '40FLT'=>'40" FLAT', '20OPS'=>'20" OPEN SIDE', '20RFR'=>'20" REEFER', '40RFR'=>'40" REEFER', '40RHC'=>'40" REEFER HIGH CUBE', '20IST'=>'20" ISOTANK', ), (isset($inputs['tipo'])?$inputs['tipo']:null), array('class' => 'form-control')) }}
    @foreach($contenedores as $c) @endforeach
    Código Tipo Peso Bruto Peso Neto Garantía Descripción
    {{ $c->codigo }} {{ $c->get_tipo_display() }} {{ $c->peso_bruto }} {{ $c->peso_neto }} {{ $c->garantia }} {{ $c->descripcion }}
    {{ $contenedores->appends(Input::except('page'))->links() }}
    @endsection @section('js-footer') @endsection