This file contains hidden or 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains hidden or 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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains hidden or 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\Firebase; | |
use App\Models\User\User; | |
use Exception; | |
use Firebase\Auth\Token\Verifier; | |
class Guard | |
{ |
This file contains hidden or 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\GraphQL\Mutations\System\TranslationManager\Projects; | |
// Project Model | |
use App\System\TranslationManager\Project\Project; | |
use GraphQL; | |
use GraphQL\Type\Definition\Type; | |
use Rebing\GraphQL\Support\Mutation; |
This file contains hidden or 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\GraphQL\Types\InputObjects; | |
use GraphQL\Type\Definition\Type; | |
use Rebing\GraphQL\Support\Type as GraphQLType; | |
class LocaleInputObjectType extends GraphQLType | |
{ | |
protected $inputObject = true; |
This file contains hidden or 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\GraphQL\Types\System\TranslationManager; | |
// Project Model | |
use App\System\TranslationManager\Project\Project; | |
use GraphQL; | |
use GraphQL\Type\Definition\Type; | |
use Rebing\GraphQL\Support\Type as GraphQLType; |
This file contains hidden or 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\GraphQL\Queries\System\TranslationManager; | |
// Project Model | |
use App\System\TranslationManager\Project\Project; | |
use GraphQL\Type\Definition\Type; | |
use Rebing\GraphQL\Support\Query; | |
use Rebing\GraphQL\Support\SelectFields; |
This file contains hidden or 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\GraphQL\Types\System\Localization; | |
// Locale Model | |
use App\System\Localization\Locale; | |
use GraphQL\Type\Definition\Type; | |
use Rebing\GraphQL\Support\Type as GraphQLType; | |
class LocalesType extends GraphQLType |
This file contains hidden or 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
<template> | |
<div> | |
<div v-for="(line, index) in lines" :key="index" class="row"> | |
<div class="col-lg-6"> | |
<div class="row"> | |
<div class="col-2"> | |
<q-select | |
v-model="line.countryCode" | |
label="Country Code" | |
:options="countryPhoneCodes" |
This file contains hidden or 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
src/App.vue | |
<template> | |
<div id="q-app"> | |
<q-ajax-bar ref="bar" size="2px" :delay="delay" /> | |
<router-view v-on:startAjaxBar="onStartAjaxBar" v-on:stopAjaxBar="onStopAjaxBar" /> | |
</div> | |
</template> | |
<script> |