@extends('adminlte::page') @section('title', 'Del Mercado') @section('content_header')

Ordenes

@stop @section('content') @if (count($orders) > 0)
@foreach ($orders as $o) @endforeach
Nombre de contacto Teléfono de contacto Dirección de entrega Departamento Municipio Método de pago Subtotal Delivery Total  
{{ $o->contact_name }}
{{ $o->contact_phone }}
{{ $o->address }}
{{ $o->zone->state["name"] }}
{{ $o->zone["name"] }}
{{ $o->payment_method == "cash" ? "Efectivo" : "Tarjeta" }}
{{ $o->subtotal }}
{{ $o->delivery_amount }}
{{ $o->total }}
 Ver orden {{ $o->id }}
@endif @stop @section('css') @stop