Skip to content
View blockpc's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report blockpc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. select2-wire select2-wire Public

    free select2 livewire for laravel

    PHP 25

  2. blockpcito blockpcito Public

    New version for template with laravel 9 / 10

    JavaScript

  3. Component color-picker for laravel TALL Component color-picker for laravel TALL
    1
    // - si el componente lleva el parametro 'hexadecimal' los colores seran formateados como valores hexadecimales '#c62828'
    2
    // - si el componente no lleva el parametro 'hexadecimal' los colores seran formateados como valores string siguiendo el formato tailwind 'bg-red-800'
    3
    
                  
    4
    @props(['hexadecimal' => false])
    5
    
                  
  4. Provincias de Chile. Formato JSON Provincias de Chile. Formato JSON
    1
    [
    2
        {"id":11, "name": "Iquique", "region_id": 1},
    3
        {"id":14, "name": "Tamarugal", "region_id": 1},
    4
        {"id":21, "name": "Antofagasta", "region_id": 2},
    5
        {"id":22, "name": "El Loa", "region_id": 2},
  5. Regiones de Chile. Formato JSON Regiones de Chile. Formato JSON
    1
    [
    2
        {"id":1, "name": "Tarapacá"},
    3
        {"id":2, "name": "Antofagasta"},
    4
        {"id":3, "name": "Atacama"},
    5
        {"id":4, "name": "Coquimbo"},
  6. Middleware for development Middleware for development
    1
    <?php
    2
    
                  
    3
    declare(strict_types=1);
    4
    
                  
    5
    namespace App\Http\Middleware;