19 lines
418 B
PHP
19 lines
418 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers;
|
||
|
|
|
||
|
|
use App\Models\Plan;
|
||
|
|
use App\Models\Option;
|
||
|
|
|
||
|
|
class PlanController extends Controller
|
||
|
|
{
|
||
|
|
public function index()
|
||
|
|
{
|
||
|
|
$page_data = get_option('manage-pages');
|
||
|
|
$general = Option::where('key','general')->first();
|
||
|
|
$plans = Plan::where('status',1)->latest()->get();
|
||
|
|
|
||
|
|
return view('web.plan.index',compact('page_data', 'general', 'plans'));
|
||
|
|
}
|
||
|
|
}
|