mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
- Added a new gate called `viewPulse` in the `AuthServiceProvider` class. - The gate allows only admin users to view the Pulse feature.
19 lines
331 B
PHP
19 lines
331 B
PHP
<?php
|
|
|
|
namespace App\View\Components\home;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class upcoming_skins extends Component
|
|
{
|
|
public function __construct(public array $upcomingSkins)
|
|
{
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.home.upcoming_skins');
|
|
}
|
|
}
|