mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
12 lines
163 B
PHP
12 lines
163 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class AssetsController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('assets.index');
|
|
}
|
|
}
|