CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Models\NotificationRule;
use App\Http\Requests\StoreNotificationRuleRequest;
use App\Http\Requests\UpdateNotificationRuleRequest;
class NotificationRuleController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \App\Http\Requests\StoreNotificationRuleRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreNotificationRuleRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\NotificationRule $notificationRule
* @return \Illuminate\Http\Response
*/
public function show(NotificationRule $notificationRule)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\NotificationRule $notificationRule
* @return \Illuminate\Http\Response
*/
public function edit(NotificationRule $notificationRule)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateNotificationRuleRequest $request
* @param \App\Models\NotificationRule $notificationRule
* @return \Illuminate\Http\Response
*/
public function update(UpdateNotificationRuleRequest $request, NotificationRule $notificationRule)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\NotificationRule $notificationRule
* @return \Illuminate\Http\Response
*/
public function destroy(NotificationRule $notificationRule)
{
//
}
}