@extends('layouts.admin') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('success'))
  • {{ session('success') }}
@endif {{-- START TABELA MEUS SORTEIOS --}}

Clientes

@foreach ($clientes as $cliente) @endforeach
Nome Telefone Acões
{{ $cliente->nome }} {{ $cliente->telephone }} Editar
@if (session()->has('sorteio')) @endif @endsection