mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
- Updates dependancies - Added time to mod component - Implement naturalSort function into homepage queries Short todo: - Migrate top navigation from old-build - Mod detail page
21 lines
341 B
PHP
21 lines
341 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class ModListStats extends Component
|
|
{
|
|
public function __construct(
|
|
public $mod,
|
|
public $modVersion
|
|
) {
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.mod-list-stats');
|
|
}
|
|
}
|