Skip to content

Instantly share code, notes, and snippets.

View flyingluscas's full-sized avatar
🏠
Working from home

fly flyingluscas

🏠
Working from home
View GitHub Profile

Componentes Painel

  • Tabela
  • Formulario
  • Modal
  • Paginação
  • Mensagens de erro
  • Notificações
  • Editor de texto
  • Galeria

Keybase proof

I hereby claim:

  • I am Lucas-Pires on github.
  • I am lucaspiresmattos (https://keybase.io/lucaspiresmattos) on keybase.
  • I have a public key whose fingerprint is 9C9F 3D23 0B6B 9453 7B4F 25A6 D5AD C30A FF9F 18D2

To claim this, I am signing this object:

@flyingluscas
flyingluscas / Moov API Routes.md
Last active June 22, 2016 17:49
Moov API Routes

Moov CLI REST-API

movie/list

Parameter | Required | Type | Default | Description --- | --- | --- | --- | --- | --- limit | No | Integer | 20 | Limit per page page | No | Integer | 1 | Page number quality | No | String | All | 720p, 1080p, 3D query | No | String | null | Search movies by title

@flyingluscas
flyingluscas / InstallPHP7.0CLI.md
Last active February 1, 2022 06:12
Install PHP 7.0 CLI
$ sudo add-apt-repository ppa:ondrej/php; sudo apt-get update
$ sudo apt-get install php7.1-cli -y
$ sudo apt-get install -y \
@flyingluscas
flyingluscas / LaravelSaveMethod.md
Last active July 26, 2016 16:08
Laravel Model Save Method

Criando post e salvando no banco

  $post = new Post([
    'title' => 'Batatas não avoam',
    'author' => 'Lucas Pires',
  ]);
  
  $post->save();
@flyingluscas
flyingluscas / MySublimeText3Settings.md
Last active August 15, 2018 13:17
My Sublime Text 3 Settings
@flyingluscas
flyingluscas / SettingUpDocker.md
Last active August 1, 2022 23:22
Setting Up Docker

Setting Up Docker

1. Installing Docker

$ curl -sSL https://get.docker.com/ | sh
$ sudo usermod -aG docker $USER
@flyingluscas
flyingluscas / MyPHPUnitSettings.md
Created August 1, 2016 15:00
My PHPUnit Settings

My PHPUnit Settings

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="bootstrap/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
@flyingluscas
flyingluscas / ListenersForJwtEventsOnLaravel.md
Last active October 28, 2016 01:52
Listeners for JWT events on Laravel 5

Listeners for JWT events on Laravel 5

1. Criando Listener

Dentro da pasta app\Listeners crie um arquivo com o seguinte nome JWTAbsentTokenListener.php, e adicione o seguinte conteúdo :

<?php

namespace App\Listeners;