Introduces a new rank management system including the Rank model, migrations for the ranks table and user IP address, Livewire components for managing and displaying ranks, and related Blade views. Updates navigation and routes to include the new 'Gestión Rangos' section, and enhances the ShareCodeComponent with user data. Also adds a reusable input field component for forms.
14 lines
187 B
PHP
14 lines
187 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use Livewire\Component;
|
|
|
|
class ShowRangos extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.show-rangos');
|
|
}
|
|
}
|