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 | |
| declare(strict_types=1); | |
| namespace App\Domain\Admin; | |
| use App\Infrastructure\Entity\AbstractEntity; | |
| /** | |
| * Class Profile |
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\Http\Response; | |
| use App\Http\Status; | |
| use Illuminate\Http\JsonResponse; | |
| use Illuminate\Support\Facades\Response; | |
| /** | |
| * Class Answer |
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\Exceptions; | |
| use App\Http\Response\AnswerTrait; | |
| use App\Http\Status; | |
| use Exception; | |
| use ForceUTF8\Encoding; | |
| use Illuminate\Database\QueryException; | |
| use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; |
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
| # configure grep regEx to your ifcongig output | |
| export XDEBUG_REMOTE_HOST=$(ifconfig wlp6s0 | grep -oE 'inet [[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}\.[[:digit:]]{1,3}' | cut -c6-) |
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> | |
| <q-expansion-item | |
| :key="action.uuid" | |
| v-if="action.children && action.children.length" | |
| :icon="action.icon" | |
| :label="action.name" | |
| :value="expanded" | |
| > | |
| <template v-for="(kid, key) in action.children"> | |
| <DashboardAction |
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
| version: '3' | |
| # volumes | |
| volumes: | |
| mariadb-data: | |
| driver: local | |
| # networks | |
| networks: | |
| internal: |
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
| window.procutList5 = [] | |
| function add5(quantidade_equipe = undefined, funcaoo = undefined) { | |
| var quantidade = quantidade_equipe || document.getElementById("quantidade_equipe").value | |
| var funcao = funcaoo || document.getElementById("funcaoo").value | |
| window.procutList5.push({ quantidade, funcao }) | |
| var list = window.procutList5.map(function (item, index) { | |
| return `<li>${item.funcao} ${item.quantidade} | |
| <input |
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> | |
| {{ $get(person, 'address.street') }} | |
| </div> | |
| </template> |
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> | |
| <q-input | |
| :mask="mask" | |
| :value="inputValue" | |
| @input="inputUpdateValue($event)" | |
| v-bind="inputAttrs" | |
| > | |
| <template v-slot:append> | |
| <DateWidgetDate | |
| :format="format" |
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
| FROM node:10.15-alpine as base | |
| RUN apk --no-cache --virtual build-dependencies add \ | |
| python \ | |
| make \ | |
| g++ \ | |
| && rm -f /var/cache/apk/* \ | |
| && npm config set unsafe-perm true \ | |
| && npm install --quiet node-gyp -g --cache /tmp/empty-cache |