Skip to content

Instantly share code, notes, and snippets.

View Cleanse's full-sized avatar
🕊️
THINKING

Paul Lovato Cleanse

🕊️
THINKING
View GitHub Profile
@Cleanse
Cleanse / azura.js
Created September 24, 2015 22:55
Test for Azura
var Discord = require("discord.js");
var mybot = new Discord.Client();
mybot.on("message", function(message){
if(message.content === "ping")
mybot.reply(message, "pong");
});
function verticalFunction() {
return 'This';
}
function horizontalFunction() {
return 'That';
}
Database:
entries
- id
- user_id
- team_id
users
- id
- name
$entry = Entry::with(['user' => function($query) use ($user, $team) {
$query->where('id', '=', $user)->with(['team' => function($q) use ($team) {
$q->where('id', '=', $team);
}]);
}])->get();
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<!-- Bootstrap http://www.building58.com/examples/tabSlideOut.html-->
<link href="css/bootstrap.min.css" rel="stylesheet">
CREATE TABLE `schedule` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`scheduled_on` datetime DEFAULT NULL,
`desc` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
Route::get('test', function() {
//Get database data as objects