@extends('template.layoutAdmin', ['activeButton'=>'promocodes']) @section('cabecera')

Códigos de Promociones

@endsection @section('style') @endsection @section('title') Promo Codes @endsection @section('contenido')

@foreach ($dataPromocodes["data"] as $currentPromocode) @php $currentPromocode->data = json_decode($currentPromocode->data); @endphp @endforeach
{{trans('promocodes.fecha')}} {{trans('promocodes.tipo')}} {{trans('promocodes.valor')}} {{trans('promocodes.codigo')}} {{trans('promocodes.estado')}} {{trans('promocodes.opciones')}}
{{ $currentPromocode->data->codeDate }} @if ($currentPromocode->idTipoCode == 1701) General @endif @if ($currentPromocode->idTipoCode == 1702) Usuario Definido @endif @if ($currentPromocode->idTipoCode == 1703) Primer Pedido @endif @if (isset($currentPromocode->tipovalor) and ($currentPromocode->tipovalor == 2 ) ) {{App\Helpers\monedaH::getCurrentSimbol()}} @endif {{ $currentPromocode->valor }} @if (isset($currentPromocode->tipovalor) and ($currentPromocode->tipovalor == 1 ) ) % @endif {{ $currentPromocode->code }} @if ( $currentPromocode->state == 1 ) {{ trans('promocodes.activo') }} @endif @if ($currentPromocode->state == 3 && ($currentPromocode->idTipoCode == 1701) ) {{ trans('promocodes.usado') }} @endif @if($currentPromocode->state == 0) {{ trans('promocodes.inactivo') }} @endif
@endsection @section('js') @endsection