Files
cheerstothe_season_2.0/app/Http/Controllers/Admin/ManageCmsController.php

14 lines
255 B
PHP
Raw Permalink Normal View History

2024-05-28 12:45:23 +05:30
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class ManageCmsController extends Controller
{
public function index(){
return view('Admin.pages.manage_cms.manage_cms');
}
}