@extends('delivery.default')
@section('content')
@if(session()->has('message_sucesso'))
{{ session()->get('message_sucesso') }}
@endif
@foreach($cupons as $c)
@if($c->tipo == 'valor')
@else
@endif
@if($c->ativo)
ATIVO
@else
DESATIVADO
@endif
@endforeach
@endsection