@extends('templates.default')
@section('css')
@endsection
@section('nav')
Home
Entregas
@endsection
@section('title_right')
@endsection
@section('content')
Código |
Estado |
Envío |
Fecha Emisión |
@foreach($entregas as $e)
Entrega-{{ $e->id }} |
{{ $e->getEstadoDisplay() }} |
{{ $e->envio->numero_manifiesto }} |
{{ $e->created_at }} |
@endforeach
{{ $entregas->appends(Input::except('page'))->links() }}
@endsection
@section('js-footer')
{{ HTML::script('js/lightbox.js') }}
@endsection