Sindbad~EG File Manager

Current Path : /var/www/html/carsanies.sumar.com.py/resources/views/livewire/
Upload File :
Current File : /var/www/html/carsanies.sumar.com.py/resources/views/livewire/bandeja.blade.php

<div>
    <table class="table">
        <thead>
            <tr>
                <th>Nombre</th>
                <th>Email</th>
                <th>Acciones</th>
            </tr>
        </thead>
        <tbody>
            @foreach($contactos as $value)
                <tr>
                    <td>{{ $value->nombre }}</td>
                    <td>{{ $value->correo }}</td>
                    <td>
                        <button type="button" class="btn btn-warning btn-sm" data-toggle="modal" data-target="#viewModal{{ $value->id }}"><i class="fas fa-eye"></i></button>
                        <!-- Modal -->
                        <div class="modal fade" wire:ignore.self id="viewModal{{ $value->id }}" tabindex="-1" role="dialog" aria-labelledby="viewModalLabel" aria-hidden="true">
                            <div class="modal-dialog" role="document">
                                <div class="modal-content">
                                    <div class="modal-header">
                                        <h5 class="modal-title" id="viewModalLabel">
                                            Mensaje de {{ $value->nombre }}
                                        </h5>
                                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                                            <span aria-hidden="true">&times;</span>
                                        </button>
                                    </div>
                                    <div class="modal-body">
                                        <p><b>Usuario:</b> {{ $value->nombre }}</p>
                                        <p><b>Email:</b> {{ $value->correo }}</p>
                                        <p><b>Equipo:</b>  
                                        </p>
                                        <p>{{$value->mensaje}}</p>
                                    </div>
                                    <div class="modal-footer">
                                        @if($value->estado == 'pendiente')
                                            <button type="button" class="btn btn-danger" wire:click="bloquear({{ $value->id }})" data-dismiss="modal">Bloquear</button>
                                        @else

                                        @endif
                                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Cerrar</button>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <button type="button" class="btn btn-danger btn-sm" data-toggle="modal" data-target="#exampleModal{{ $value->id }}"><i class="fas fa-trash"></i></button>
                        <!-- Modal -->
                        <div class="modal fade" wire:ignore.self id="exampleModal{{ $value->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
                            <div class="modal-dialog" role="document">
                                <div class="modal-content">
                                    <div class="modal-header">
                                        <h5 class="modal-title" id="exampleModalLabel">
                                            Borrar el mensaje
                                        </h5>
                                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                                            <span aria-hidden="true">&times;</span>
                                        </button>
                                    </div>
                                    <div class="modal-body">
                                            <p>¿Realmente quiere borrar el mensaje?</p>
                                    </div>
                                    <div class="modal-footer">
                                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Cerrar</button>
                                        <button type="button" wire:click="delete({{ $value->id }})" class="btn btn-danger" data-dismiss="modal">Confirmar</button>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </td>
                </tr>
            @endforeach
        </tbody>
    </table>
</div>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists