@extends('layouts.app') @section('title', 'Premios') @section('content')

PREMIOS

Tus puntos: {{ auth()->user()->total_points_format }}

@include('partials.alerts')
@forelse ($awards as $award)

{{ $award->name }}

picture_award

{{ $award->points_for_redeem_format }} Puntos

Unidades disponibles: {{ $award->total_quantity }}

@if ($award->auth_user_reached_max_redeem || $award->total_quantity <= 0)
{{ $award->total_quantity <= 0 ? 'AGOTADO' : '' }} {{ $award->auth_user_reached_max_redeem ? 'Premio redimido' : '' }}
@endif
@empty

Por el momento no hay premios disponibles ...

@endforelse
@include('home.partials.modal-redeem-awards') @endsection @section('scripts') @endsection