@extends('adminlte::page') @section('title', 'Lista de sorteos | EL TRIKI') @section('content_header')

Lista de sorteos

@stop @section('content')
Nuevo Sorteo
{{-- --}} @foreach ($sorteos as $sorteo) {{-- --}} @endforeach
# Nombre de sorteo Cantidad opciones Fecha de registro Fecha de sorteo Premios Tickets vendidosDescripcionEstado Opciones
{{ $sorteo->id }} {{ $sorteo->nombre_sorteo }} {{ $sorteo->opciones }} {{ $sorteo->created_at }} {{ $sorteo->fecha_de_sorteo }} {{ $sorteo->premios }} {{ $sorteo->cantidad_vendida }}{{ $sorteo->descripcion_del_sorteo }} @if ($sorteo->estado) Activo @else Inactivo @endif
@csrf @method('DELETE') @if ($sorteo->estado === 1) Editar @else @endif
@stop @section('css') @stop @section('js') @stop