View gist:ab6220568038a4c44ba7ee23814ccb75
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
<div v-for="card in cards"> | |
<CardShow | |
v-if="card.status === 'show'" | |
:card="card" | |
> | |
<CardDelete | |
v-if="card.status === 'delete'" | |
:card="card" | |
> |
View UserResource.php
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\V1\User\Resources; | |
use Illuminate\Http\Resources\Json\JsonResource; | |
class UserResource extends JsonResource | |
{ | |
/** | |
* Transform the resource collection into an array. |
View mysql.sql
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
CREATE TABLE shop ( | |
article INT UNSIGNED DEFAULT '0000' NOT NULL, | |
dealer CHAR(20) DEFAULT '' NOT NULL, | |
price DECIMAL(16,2) DEFAULT '0.00' NOT NULL, | |
PRIMARY KEY(article, dealer)); | |
INSERT INTO shop VALUES | |
(1,'A',3.45),(1,'B',3.99),(2,'A',10.99),(3,'B',1.45), | |
(3,'C',1.69),(3,'D',1.25),(4,'D',19.95); |
View 10-funcoes-imperdiveis-do-lodash.html
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>10 Funções imperdíveis do lodash</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.min.js"></script> | |
</head> |
View test passo 1.html
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
test1 |
View fade-effect-css-2.html
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
<!-- | |
Assista o vídeo dessa aula: https://youtu.be/ZdI_AEUgApw | |
Se inscreva no canal: https://youtube.com/tiagomatosweb | |
- | |
Valeu jovem | |
TM ;) | |
--> | |
<!doctype html> | |
<html lang="en"> |
View fade-effect-css-1.html
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
<!-- | |
Assista o vídeo dessa aula: https://youtu.be/ZdI_AEUgApw | |
Se inscreva no canal: https://youtube.com/tiagomatosweb | |
- | |
Valeu jovem | |
TM ;) | |
--> | |
<!doctype html> | |
<html lang="en"> |
View conhecendo-async-await-javascript.html
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
<!-- | |
Assista o vídeo dessa aula: https://youtu.be/3158VWp1L9I | |
Se inscreva no canal https://youtube.com/tiagomatosweb | |
- | |
Valeu jovem | |
TM ;) | |
--> | |
<!doctype html> | |
<html lang="en"> |