@extends('delivery.default') @section('content') @if(session()->has('message_sucesso'))
{{ session()->get('message_sucesso') }}
@endif
Seus cupons
@if(sizeof($cupons) == 0)
Nenhum cupom encontrado :(
@endif @foreach($cupons as $c)
ativo) href="/carrinho/forma_pagamento/{{$c->codigo}}" @else href="#1" @endif> @if($c->tipo == 'valor') @if($c->valor > 2 && $c->valor <= 7)
@elseif($c->valor > 7 && $c->valor <= 15)
@elseif($c->valor > 15)
@endif @else @if($c->valor > 2 && $c->valor <= 7)
@elseif($c->valor > 7 && $c->valor <= 15)
@elseif($c->valor > 15)
@endif @endif
ativo) href="/carrinho/forma_pagamento/{{$c->codigo}}" @else href="#1" @endif>Código:
{{$c->codigo}}
@if($c->tipo == 'valor')
R$ {{number_format($c->valor, 2)}}
@else
% {{number_format($c->valor, 0)}}
@endif @if($c->ativo)
ATIVO
@else
DESATIVADO
@endif
@endforeach
@endsection