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