💄 Updating the UI and style files.

This commit is contained in:
WispX
2021-12-18 21:08:43 +08:00
parent 4a9715d77f
commit 68a55a8617
9 changed files with 230 additions and 248 deletions
@@ -0,0 +1,19 @@
<?php
namespace App\Http\Controllers\User;
use App\Http\Controllers\Controller;
use App\Models\User;
use Illuminate\Support\Facades\Auth;
use Illuminate\View\View;
class ImageController extends Controller
{
public function index(): View
{
/** @var User $user */
$user = Auth::user();
return view('images');
}
}