Cambiando el nombre de la app y cosas random
This commit is contained in:
@@ -3,11 +3,9 @@
|
||||
namespace App\Livewire\Usuarios;
|
||||
|
||||
use App\Enums\RoleName;
|
||||
use App\Models\Turno;
|
||||
use App\Models\User;
|
||||
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\Support\Facades\Gate;
|
||||
use Livewire\Attributes\Computed;
|
||||
use Livewire\Component;
|
||||
use TallStackUi\Traits\Interactions;
|
||||
@@ -31,8 +29,7 @@ class Index extends Component
|
||||
return;
|
||||
}
|
||||
|
||||
$this->dialog()->question('¿Esta seguro de eliminar este usuario?',
|
||||
'No podra ser recuperado')
|
||||
$this->dialog()->question('¿Esta seguro de eliminar este usuario?', 'No podrá ser recuperado')
|
||||
->confirm('Eliminar Usuario', method: 'doDelete', params: $id)
|
||||
->cancel()
|
||||
->send();
|
||||
|
||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "app",
|
||||
"name": "zenithar",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Zenithar</title>
|
||||
<title>Aureon</title>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Zenithar</title>
|
||||
<title>Aureon</title>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="border-b">
|
||||
<div
|
||||
class="container mx-auto flex flex-col items-center justify-between gap-2 px-4 py-4 sm:py-0 sm:h-14 sm:flex-row">
|
||||
<span class="text-4xl sm:text-2xl font-semibold text-primary-700">Zenithar</span>
|
||||
<span class="text-4xl sm:text-2xl font-semibold text-primary-700">Aureon</span>
|
||||
<x-dropdown>
|
||||
<x-slot:action>
|
||||
<button
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<div class="min-h-screen flex flex-col items-center sm:justify-center">
|
||||
<div class="w-full sm:max-w-md px-6 py-4">
|
||||
<h1 class="text-center text-5xl font-semibold text-primary-700 mb-4">Zenithar</h1>
|
||||
<h1 class="text-center text-5xl font-semibold text-primary-700 mb-4">Aureon</h1>
|
||||
<p class="text-lg text-center font-medium mb-4">Recuperar Contraseña</p>
|
||||
<x-card>
|
||||
<form wire:submit="recover">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<div class="min-h-screen flex flex-col items-center sm:justify-center">
|
||||
<div class="w-full sm:max-w-md px-6 py-4">
|
||||
<h1 class="text-center text-5xl font-semibold text-primary-700 mb-4">Zenithar</h1>
|
||||
<h1 class="text-center text-5xl font-semibold text-primary-700 mb-4">Aureon</h1>
|
||||
<x-card>
|
||||
<form wire:submit="login">
|
||||
<div>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<div class="min-h-screen flex flex-col items-center sm:justify-center">
|
||||
<div class="w-full sm:max-w-md px-6 py-4">
|
||||
<h1 class="text-center text-5xl font-semibold text-primary-700 mb-4">Zenithar</h1>
|
||||
<h1 class="text-center text-5xl font-semibold text-primary-700 mb-4">Aureon</h1>
|
||||
<p class="text-lg text-center font-medium mb-4">Ingrese su nueva contraseña</p>
|
||||
<x-card>
|
||||
<form wire:submit="resetPassword">
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
<div>
|
||||
<p>
|
||||
Nothing in the world is as soft and yielding as water.
|
||||
</p>
|
||||
<div class="mb-4">
|
||||
<x-title>Configuración</x-title>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-3 gap-4">
|
||||
<a class="flex gap-4 rounded shadow p-4 group" href="{{route('usuarios.index')}}">
|
||||
<x-icon name="users" class="w-24 h-24 group-hover:text-primary transition"/>
|
||||
<div>
|
||||
<p class="text-2xl decoration-primary decoration-3 group-hover:underline transition">Usuarios</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user