@extends('layouts.app') @section('breadcrumb') @endsection @section('header')
@if($count > 0) Generar orden @endif
@endsection @section('content')
@if($venta_requests->count())
@foreach($venta_requests as $vrequest) @endforeach
NĂºmero de empleado Total compra Fecha de solicitud Estado Acciones
{{$vrequest->venta->num_emp}} {{$vrequest->created_at}} @if(!$vrequest->viewed_at) Nuevo/Sin ver @else @if(!$vrequest->validated_at) Visto/Sin responder @endif @endif @if($vrequest->validated_at) @if($vrequest->status == 'accepted') Aceptada @if($vrequest->created_order_at) Orden creada @endif @else Rechazada @endif @endif Ver detalles
{!! $venta_requests->render() !!} @else

No hay solicitudes actualmente

@endif
@endsection