This endpoint retrieves a list of available templates stored in eTrusted.
The result set can be filtered by adding request parameters.
-
URL
/users/:id
<?php | |
/** | |
* Surreal fluent query | |
* | |
* @author EDDYMENS | |
* @license MIT (or other licence) | |
*/ | |
class Surreal | |
{ |
<?php | |
class MiniRetirement { | |
private $workedYears = 0; | |
private $retirementYears = 0; | |
private $totalYears = 0; | |
private $unaccountedYears = 0; | |
public function __construct($totalYears) { |
openapi: 3.0.0 | |
info: | |
description: The books endpoint keeps a record of books and their page numbers | |
version: 1.0.0 | |
title: Book API | |
servers: | |
- url: https://lit-taiga-02928.herokuapp.com | |
- url: http://lit-taiga-02928.herokuapp.com | |
paths: | |
/: |
swagger: "2.0" | |
info: | |
description: "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters." | |
version: "1.0.0" | |
title: "Swagger Petstore" | |
termsOfService: "http://swagger.io/terms/" | |
contact: | |
email: "[email protected]" | |
license: | |
name: "Apache 2.0" |
<script> | |
var questions = { | |
"#index": { | |
question: "Which service do you use?", | |
options: [ | |
{ | |
description: "a) Service Only", | |
action: "#feedback-type" | |
}, | |
{ |
Blog images in the comment |
<?php | |
echo "Admin page here"; |
<?php | |
# This file was automatically generated by the MediaWiki 1.35.2 | |
# installer. If you make manual changes, please keep track in case you | |
# need to recreate them later. | |
# | |
# See includes/DefaultSettings.php for all configurable settings | |
# and their default values, but don't forget to make changes in _this_ | |
# file, not there. | |
# | |
# Further documentation for configuration settings may be found at: |
class StatisticsController extends Controller { | |
public function dashboard(Request $request, $year) { | |
$year = $year ?? Carbon::now()->year; | |
if(!Cache::has('dashStatsCache-'.$year)) { | |
Artisan::call('logStats:run', [ | |
'year' => $year, | |
]); | |
} | |
$stats = Cache::get('dashStatsCache-'.$year); | |
return view('dashboard')->with(compact('stats')); |