@extends('templates.default') @section('css') @endsection @section('nav')
  • Home
  • Bodegas
  • @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($bodegas as $b) @endforeach
    Estado Código Nombre Teléfono Email
      {{ $b->getEstadoDisplay() }} {{ $b->codigo }} {{ $b->nombre }} {{ $b->telefono }} {{ $b->email }}
    {{ $bodegas->appends(Input::except('page'))->links() }}
    @endsection @section('js-footer') @endsection