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
| const gulp = require('gulp'); | |
| const elixir = require('laravel-elixir'); | |
| const webpack = require('webpack'); | |
| const WebpackDevServer = require('webpack-dev-server'); | |
| const webpackConfig = require('./webpack.config'); | |
| const webpackDevConfig = require('./webpack.dev.config'); | |
| const mergeWebpack = require('webpack-merge'); | |
| const argv = require('yargs').argv; | |
| const HOST = "localhost"; |
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
| require('materialize-css'); | |
| window.Vue = require('vue'); |
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 Site\PagSeguro; | |
| use GuzzleHttp\Client; | |
| use PagSeguro\Configuration\Configure; | |
| class PagSeguroPlan | |
| { | |
| public function create(){ |
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
| <!-- | |
| Generated template for the CheckoutPage page. | |
| See http://ionicframework.com/docs/components/#navigation for more info on | |
| Ionic pages and navigation. | |
| --> | |
| <ion-header> | |
| <ion-navbar> | |
| <ion-title>checkout</ion-title> |
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 | |
| $strBD = "POLYGON((-22.886145457836463 -43.118764097835, -22.88643210096987 -43.118324215556555, -22.886694032959 -43.117846782351904, -22.886763222456636 -43.11767512097496, -22.886782990878046 -43.117605383540564, -22.886886775043237 -43.11763757004875, -22.887133879879073 -43.11891966595787, -22.88630360584699 -43.11942392125267, -22.886115805063966 -43.118823106433325, -22.886145457836463 -43.118764097835))"; | |
| $newStr = str_replace('POLYGON((','',$strBD); | |
| $newStr = str_replace('))','',$newStr); | |
| $array = explode(',',$newStr); | |
| $newArray = []; | |
| foreach ($array as $item){ |
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 class="container"> | |
| <form method="POST" @submit.prevent="send()"> | |
| <label>Arquivo</label> | |
| <input @change="setFile" type="file"> | |
| <button type="submit" class="btn">Enviar</button> | |
| </form> | |
| </div> | |
| </template> | |
| <script type="text/javascript"> |
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
| const gulp = require('gulp'); | |
| const elixir = require('laravel-elixir'); | |
| const webpack = require('webpack'); | |
| const WebpackDevServer = require('webpack-dev-server'); | |
| const webpackConfig = require('./webpack.config'); | |
| const webpackDevConfig = require('./webpack.dev.config'); | |
| require('laravel-elixir-vue'); | |
| require('laravel-elixir-webpack-official'); | |
| Elixir.webpack.config.module.loaders = []; |
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
| <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>Document</title> | |
| <link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> | |
| <link rel="stylesheet" href="css/bootstrap.mim.css"> | |
| <script src="js/jquery.min.js"></script> |
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 path = require('path') | |
| var webpack = require('webpack') | |
| module.exports = { | |
| entry: './src/main.js', | |
| output: { | |
| path: path.resolve(__dirname, './dist'), | |
| publicPath: '/dist/', | |
| filename: 'build.js' | |
| }, |