class ManualController extends Controller

Traits

AuthorizesRequests
ValidatesRequests

Methods

bool
isAutomatedRequest(Request $request = null)

Determines if the request was done by an automated script (with API token or ajax).

Response
index()

Show the application manual to the user.

Response
tutorialsArticle(string $module, string $article = null)

Show a tutorials article.

Response
documentationArticle(string $module, string $article = null)

Show a documentation article.

Details

in Controller at line 21
bool isAutomatedRequest(Request $request = null)

Determines if the request was done by an automated script (with API token or ajax).

Parameters

Request $request

Return Value

bool

at line 15
Response index()

Show the application manual to the user.

Return Value

Response

at line 27
Response tutorialsArticle(string $module, string $article = null)

Show a tutorials article.

Parameters

string $module

Name of the module or name of the article

string $article

Article name (only if the article belongs to a module)

Return Value

Response

at line 49
Response documentationArticle(string $module, string $article = null)

Show a documentation article.

Parameters

string $module

Name of the module or name of the article

string $article

Article name (only if the article belongs to a module)

Return Value

Response