jeroennoten / Laravel-AdminLTE

Easy AdminLTE integration with Laravel
MIT License
3.84k stars 1.09k forks source link

[QUESTION] Customize package due to translations on the Laravel DB migrations #1195

Closed AriRodriguezH closed 1 year ago

AriRodriguezH commented 1 year ago

Spanish

Recientemente cambie la tabla de usuarios de que se genera en automatico en laravel 10, cambie los nombres de las variables al español, una de esas fué la variable "name", me di cuenta que este cambio afecto a la barra de navegación superior donde antes colocaba el usuario logueado, ahora simplemente no muestra nada, no tengo alguna idea de que apartado tengo que mover para que nuevamente me pueda aparecer el nombre del usuario logueado arriba sin modificar mis variables nuevamente

Si alguien sabe como lograrlo y me pudise indicar los pasos se lo agradecería

English

Recently I changed the users table that is generated automatically in Laravel 10, I changed the names of the variables to Spanish, one of those was the "name" variable, I realized that this change affected the top navigation bar where before I placed the logged in user, now it simply does not show anything, I have no idea which section I have to move so that the name of the logged in user can appear again without modifying my variables again.

If anyone knows how to achieve this and could tell me the steps I would appreciate it.

dfsmania commented 1 year ago

Spanish

Hola @AriRodriguezH , por favor las consultas en inglés para la próxima. Lo primero que vas a tener que hacer es publicar las vistas del paquete (ver Views Customization). Luego vas a tener que modificar el archivo partials/navbar/menu-item-dropdown-user-menu.blade.php publicado para cambiar todas las referencias Auth::user()->name a su correspondiente nuevo nombre, en principio. Quizás haga falta hacer otras modificaciones...

De todas maneras, muchos otros paquetes para Laravel que quieras usar en un futuro pueden estar dependiendo de sus migraciones originales para los usuarios y quizás en un futuro se te complique integrar otras utilidades. No es un cambio que yo haría, a menos que sea obligatorio por alguna circunstancia...

English

Hello @AriRodriguezH, the first thing you will have to do is publish the package views (see Views Customization). Then you will have to modify the published partials/navbar/menu-item-dropdown-user-menu.blade.php file to change all Auth::user()->name references to their corresponding new name, in principle. Maybe other modifications are needed...

In any case, many other packages for Laravel that you want to use in the future may be depending on their original migrations for the users and perhaps in the future you will find it difficult to integrate other utilities. It is not a change that I would make, unless it is forced by some circumstance...

dfsmania commented 1 year ago

Closed, no feedback...