Certificate manager built on Laravel 13, Livewire 4, and Flux. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
23 lines
384 B
PHP
23 lines
384 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
class MarketingController extends Controller
|
|
{
|
|
public function home(): View
|
|
{
|
|
return view('marketing.home');
|
|
}
|
|
|
|
public function security(): View
|
|
{
|
|
return view('marketing.security');
|
|
}
|
|
|
|
public function pricing(): View
|
|
{
|
|
return view('marketing.pricing');
|
|
}
|
|
}
|