22 lines
401 B
PHP
22 lines
401 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ManageFeedbackController extends Controller
|
|
{
|
|
|
|
/**
|
|
* Created By : sayali parab
|
|
* Created at : 17 May 2024
|
|
* Use : To get manage feedback page.
|
|
*/
|
|
public function index(){
|
|
|
|
return view('Admin.pages.manage_feedback.manage_feedback');
|
|
|
|
}
|
|
}
|