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
import React, { Component } from 'react' | |
import { ActivityIndicator, ListView, Text, View, RefreshControl } from 'react-native' | |
class sabadoTerminal extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
isLoading: true, | |
refreshing: false | |
} |
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
import React, { Component } from "react"; | |
import { FlatList, StyleSheet, Text, View } from "react-native"; | |
export default class HttpExample extends Component { | |
state = { | |
data: [] | |
}; | |
componentWillMount() { | |
this.fetchData(); |
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
import React, { Component } from "react"; | |
import { FlatList, StyleSheet, Text, View } from "react-native"; | |
export default class Domingo extends Component { | |
state = { | |
data: [] | |
}; | |
componentWillMount() { | |
this.fetchData(); |
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
var api = { | |
getRovers(){ | |
var url = 'https://tiagoandre.com.br/horarios.json'; | |
return fetch(url).then((res) => res.json()); | |
} | |
}; | |
module.exports = api; |
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\Controllers; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Validator; | |
use App\Models\Subscriber; | |
use App\Notifications\SubscriberSMS; | |
use Illuminate\Support\Facades\Mail; |
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\Controllers\Admin; | |
use Illuminate\Http\Request; | |
use App\Http\Controllers\Controller; | |
class DashboardController extends Controller | |
{ | |
/** |
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\Models; | |
use Illuminate\Database\Eloquent\Model; | |
class Course extends Model | |
{ | |
public $table = 'courses'; |
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\Controllers; | |
use Illuminate\Http\Request; | |
use App\Models\Contact; | |
use App\Jobs\Send; | |
class ContactsController extends Controller | |
{ |
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\Jobs; | |
use Illuminate\Bus\Queueable; | |
use Illuminate\Queue\SerializesModels; | |
use Illuminate\Queue\InteractsWithQueue; | |
use Illuminate\Contracts\Queue\ShouldQueue; | |
use Illuminate\Foundation\Bus\Dispatchable; |
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
{ | |
"id": 1, | |
"name": "Informática Essencial", | |
"slug": "informatica-essencial", | |
"short_description": "Aprenda os Principais Pontos para começar a Programar Computadores com exemplos Reais e Aplicáveis e Receba um Brinde!", | |
"category_id": 1, | |
"level": "basic", | |
"user_id": 1, | |
"workload": 36, | |
"description": "Conteúdo com exemplos simples em Java, Python e JavaScript!\r\n\r\n Já cogitou entrar para uma faculdade ou curso técnico na área de tecnologia mais tem dúvidas?\r\n \r\n Já esteve confuso nas matérias que envolvem programação no seu curso ou Faculdade?\r\n \r\n Se você respondeu \"sim\" para uma das perguntas acima este é o curso ideal para você.\r\n \r\n Este curso é indicado para pessoas que querem ter o primeiro contato com programação de computadores, porém não tem paciência para longas e maçantes aulas teóricas, aqui teremos prática de forma simples e direta com o que realmente é relevante para i |