Skip to content

Instantly share code, notes, and snippets.

View veggigit's full-sized avatar
🏠
Working from home

Esteban Cajina veggigit

🏠
Working from home
  • Santiago de Chile
View GitHub Profile
@veggigit
veggigit / DisplayGallery.php
Last active October 8, 2021 13:06
LIVEWIRE, paginate and display
<?php
namespace App\Http\Livewire;
use Livewire\Component;
use App\Models\Gallery;
use Livewire\WithPagination;
class DisplayGallery extends Component
{
@veggigit
veggigit / add-user-admin-WordPress.sql
Created November 30, 2020 23:46 — forked from jmarreros/add-user-admin-WordPress.sql
Agrega un usuario administrador a WordPress por Base de Datos
-- Cambiar valores
START TRANSACTION;
SET @prefix = 'wp_';
SET @user_login = 'demo';
SET @user_pass = 'demo';
SET @user_email = 'demo@demo.com';
SET @display_name = 'Nombre Demo';
-- Actualiza tabla de usuarios