2025-03-05 20:28:54 -06:00
# 🎨 Laravel Vuexy Admin
2025-01-27 02:23:47 -06:00
< p align = "center" >
2025-03-05 20:28:54 -06:00
< a href = "https://koneko.mx" target = "_blank" > < img src = "https://git.koneko.mx/Koneko-ST/koneko-st/raw/branch/main/logo-images/horizontal-05.png" width = "400" alt = "Koneko Soluciones Tecnológicas Logo" > < / a >
2025-01-27 02:23:47 -06:00
< / p >
< p align = "center" >
2025-03-05 20:28:54 -06:00
< a href = "https://koneko.mx" > < img src = "https://img.shields.io/badge/Website-koneko.mx-blue" alt = "Sitio Web" > < / a >
2025-01-27 02:23:47 -06:00
< a href = "https://packagist.org/packages/koneko/laravel-vuexy-admin" > < img src = "https://img.shields.io/packagist/v/koneko/laravel-vuexy-admin" alt = "Latest Stable Version" > < / a >
< a href = "https://packagist.org/packages/koneko/laravel-vuexy-admin" > < img src = "https://img.shields.io/packagist/l/koneko/laravel-vuexy-admin" alt = "License" > < / a >
2025-03-05 20:28:54 -06:00
< a href = "https://git.koneko.mx/koneko" > < img src = "https://img.shields.io/badge/Git%20Server-Koneko%20Git-orange" alt = "Servidor Git" > < / a >
< a href = "https://github.com/koneko-mx/laravel-vuexy-admin/actions/workflows/tests.yml" > < img src = "https://github.com/koneko-mx/laravel-vuexy-admin/actions/workflows/tests.yml/badge.svg" alt = "Build Status" > < / a >
< a href = "https://github.com/koneko-mx/laravel-vuexy-admin/issues" > < img src = "https://img.shields.io/github/issues/koneko/laravel-vuexy-admin" alt = "Issues" > < / a >
2025-01-27 02:23:47 -06:00
< / p >
---
2025-03-05 20:28:54 -06:00
## 📌 Descripción
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
**Laravel Vuexy Admin** es un módulo de administración optimizado para México, basado en Laravel 11 y diseñado para integrarse con **Vuexy Admin Template** . Incluye gestión avanzada de usuarios, roles, permisos y auditoría de acciones.
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
### ✨ Características
- 🔹 Sistema de autenticación con Laravel Fortify.
- 🔹 Gestión avanzada de usuarios con Livewire.
- 🔹 Control de roles y permisos con Spatie Permissions.
- 🔹 Auditoría de acciones con Laravel Auditing.
- 🔹 Publicación de configuraciones y vistas.
- 🔹 Soporte para cache y optimización de rendimiento.
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
---
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
## 📦 Instalación
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Instalar vía **Composer** :
2025-01-27 02:23:47 -06:00
```bash
2025-03-05 20:28:54 -06:00
composer require koneko/laravel-vuexy-admin
2025-01-27 02:23:47 -06:00
```
2025-03-05 20:28:54 -06:00
Publicar archivos de configuración y migraciones:
2025-01-27 02:23:47 -06:00
```bash
2025-03-05 20:28:54 -06:00
php artisan vendor:publish --tag=vuexy-admin-config
php artisan migrate
2025-01-27 02:23:47 -06:00
```
2025-03-05 20:28:54 -06:00
---
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
## 🚀 Uso básico
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
```php
use Koneko\VuexyAdmin\Models\User;
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
$user = User::create([
'name' => 'Juan Pérez',
'email' => 'juan@example .com',
'password' => bcrypt('secret'),
]);
2025-01-27 02:23:47 -06:00
```
---
2025-03-05 20:28:54 -06:00
## 📚 Configuración adicional
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Si necesitas personalizar la configuración del módulo, publica el archivo de configuración:
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
```bash
php artisan vendor:publish --tag=vuexy-admin-config
```
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Esto generará `config/vuexy_menu.php` , donde puedes modificar valores predeterminados.
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
---
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
## 🛠 Dependencias
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Este paquete requiere las siguientes dependencias:
- Laravel 11
- `laravel/fortify` (autenticación)
- `spatie/laravel-permission` (gestión de roles y permisos)
- `owen-it/laravel-auditing` (auditoría de usuarios)
- `livewire/livewire` (interfaz dinámica)
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
---
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
## 📦 Publicación de Assets y Configuraciones
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Para publicar configuraciones y seeders:
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
```bash
php artisan vendor:publish --tag=vuexy-admin-config
php artisan vendor:publish --tag=vuexy-admin-seeders
php artisan migrate --seed
```
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Para publicar imágenes del tema:
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
```bash
php artisan vendor:publish --tag=vuexy-admin-images
```
2025-01-27 02:23:47 -06:00
---
2025-03-05 20:28:54 -06:00
## 🌍 Repositorio Principal y Sincronización
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Este repositorio es una **copia sincronizada** del repositorio principal alojado en ** [Tea - Koneko Git ](https://git.koneko.mx/koneko/laravel-vuexy-admin )**.
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
### 🔄 Sincronización con GitHub
- **Repositorio Principal:** [git.koneko.mx ](https://git.koneko.mx/koneko/laravel-vuexy-admin )
- **Repositorio en GitHub:** [github.com/koneko-mx/laravel-vuexy-admin ](https://github.com/koneko-mx/laravel-vuexy-admin )
- **Los cambios pueden reflejarse primero en Tea antes de GitHub.**
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
### 🤝 Contribuciones
Si deseas contribuir:
1. Puedes abrir un **Issue** en [GitHub Issues ](https://github.com/koneko-mx/laravel-vuexy-admin/issues ).
2. Para Pull Requests, **preferimos contribuciones en Tea** . Contacta a `admin@koneko.mx` para solicitar acceso.
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
⚠️ **Nota:** Algunos cambios pueden tardar en reflejarse en GitHub, ya que este repositorio se actualiza automáticamente desde Tea.
2025-01-27 02:23:47 -06:00
---
2025-03-05 20:28:54 -06:00
## 🏅 Licencia
2025-01-27 02:23:47 -06:00
2025-03-05 20:28:54 -06:00
Este paquete es de código abierto bajo la licencia [MIT ](LICENSE ).
2025-01-27 02:23:47 -06:00
---
2025-03-05 20:28:54 -06:00
2025-01-27 02:23:47 -06:00
< p align = "center" >
Hecho con ❤️ por < a href = "https://koneko.mx" > Koneko Soluciones Tecnológicas< / a >
< / p >