This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var level1 = { | |
preload: function() { | |
console.log('PRELOAD') | |
game.load.image('wall','assets/wall.png') | |
game.load.image('ground','assets/ground.png') | |
game.load.spritesheet('player','assets/player.png', 28, 22) | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var level1 = { | |
preload: function() { | |
console.log('PRELOAD') | |
game.load.image('wall','assets/wall.png') | |
game.load.image('ground','assets/ground.png') | |
game.load.spritesheet('player','assets/player.png', 28, 22) | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var level1 = { | |
preload: function() { | |
console.log('PRELOAD') | |
game.load.image('wall','assets/wall.png') | |
game.load.image('ground','assets/ground.png') | |
}, | |
create: function() { | |
console.log('create') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let laravelHeader = document.head.querySelector('meta[name="Laravel"]'); | |
window.Laravel = null | |
if (laravelHeader) if (laravelHeader.content) window.Laravel = JSON.parse(laravelHeader.content); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="Laravel" content="{{ json_encode([ 'app' => config('app')]) }}"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* First we will load all of this project's JavaScript dependencies which | |
* includes Vue and other libraries. It is a great starting point when | |
* building robust, powerful web applications using Vue and Laravel. | |
*/ | |
require('./bootstrap'); | |
window.Vue = require('vue'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as mutations from '../../mutation-types' | |
import * as actions from '../../action-types' | |
import users from '../../../api/users' | |
export default { | |
[ actions.LOGGED_USER ] (context) { | |
return new Promise((resolve, reject) => { | |
users.fetch().then(response => { | |
context.commit(mutations.LOGGED_USER, response.data) | |
resolve(response) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// USERS MODULE | |
export const LOGGED_USER = 'LOGGED_USER' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests\Feature; | |
use App\User; | |
use Tests\TestCase; | |
use Illuminate\Foundation\Testing\WithFaker; | |
use Illuminate\Foundation\Testing\RefreshDatabase; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
use Illuminate\Notifications\Notifiable; | |
use Illuminate\Foundation\Auth\User as Authenticatable; | |
use Laravel\Passport\HasApiTokens; | |
class User extends Authenticatable | |
{ |