Feat: Landing Page (welcome)
✅ Hero секция с градиентом ✅ Преимущества платформы (3 карточки) ✅ Публичные курсы (до 6) ✅ CTA секция ✅ Footer ✅ Login Modal ✅ Адаптивный дизайн Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
Executable
+20
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Course;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class HomeController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
// Получаем публичные курсы (или просто активные)
|
||||
$courses = Course::where('is_active', true)
|
||||
->with('category')
|
||||
->limit(6)
|
||||
->get();
|
||||
|
||||
return view('welcome', compact('courses'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user