⚝
One Hat Cyber Team
⚝
Your IP:
160.79.111.115
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
favoaysf
/
www
/
app
/
Http
/
Controllers
/
Back
/
View File Name :
NotificationController.php
<?php namespace App\Http\Controllers\Back; use App\{ Models\Notification, Http\Controllers\Controller }; use DB; class NotificationController extends Controller { /** * Constructor Method. * * Setting Authentication */ public function __construct() { $this->middleware('auth:admin'); $this->middleware('adminlocalize'); } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function notifications(){ return view('back.notification.index'); } public function view_notification() { return view('back.notification.notification',[ 'data'=>Notification::orderby('id','desc') ]); } public function delete($id) { Notification::findOrFail($id)->delete(); return back()->withSuccess(__('Notification Delete Successfully.')); } /** * Clear a listing of the resource. * * @return \Illuminate\Http\Response */ public function clear_notf(){ Notification::truncate(); } }