Files

20 lines
371 B
PHP
Raw Permalink Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace App\Http\Controllers;
use App\Models\Blog;
use App\Models\Plan;
use App\Models\Option;
use App\Models\Feature;
use App\Models\Testimonial;
use App\Models\PosAppInterface;
class WebController extends Controller
{
public function index()
{
$plans = Plan::where('status', 1)->get();
return view('index', compact('plans'));
2026-03-15 17:08:23 +07:00
}
}