changesDone

This commit is contained in:
sayaliparab
2024-05-23 15:20:21 +05:30
parent c9097b7f35
commit 6cc6a46c43
39 changed files with 4045 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class ManageNotificationsController extends Controller
{
public function index(){
return view('Admin.pages.manage_notification.manage_notification');
}
}