Commit 735c24b5 authored by Kevin Yumang's avatar Kevin Yumang

SERV-2286 - modal element WIP

parent e9ced96b
<?php
/*
|------------------------------------------------------------------------------------------------
| Information
|------------------------------------------------------------------------------------------------
|
| This file is beautified by the command "sidekick:CodebeautifierCommand" of the ceetrox
| sidekick package.
|
| Author: Kevin Almond Roe Yumang <kevin.yumang@itmax.email>
| Update: 2022-06-28 05:14:40
|
*/
namespace Ceetrox\Sidekick\Views\Limitless\Modal;
/*
|------------------------------------------------------------------------------------------------
| Dependencies
|------------------------------------------------------------------------------------------------
*/
use View;
/*
|------------------------------------------------------------------------------------------------
| Class "Config"
|------------------------------------------------------------------------------------------------
*/
class Config
{
public $methodAllocation = [
'Limitless::ModalStart' => 'start',
'Limitless::ModalStop' => 'stop'
];
/*
|--------------------------------------------------------------------------------------------
| Method "start"
|--------------------------------------------------------------------------------------------
*/
public function start($parameters)
{
return View('Limitless::Modal.Start');
}
/*
|--------------------------------------------------------------------------------------------
| Method "stop"
|--------------------------------------------------------------------------------------------
*/
public function stop($parameters)
{
return View('Limitless::Modal.Stop');
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment