@extends('templates.default') @section('css') @endsection @section('nav')
Home
Bodegas
@endsection @section('title_right')
@endsection @section('content')
Filtro:
Estado:
{{ Form::select('estado', array('T' => 'Todos','A' => 'Activo', 'I' => 'Inactivo'), (isset($inputs['estado'])?$inputs['estado']:null), array('class' => 'form-control')) }}
Buscar
@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