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

15 lines
269 B
PHP
Raw Permalink Normal View History

2024-05-23 15:20:21 +05:30
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class ManageVouchersController extends Controller
{
public function index(){
return view('Admin.pages.manage_voucher.manage_voucher');
}
}