Follow the steps below to setup a local development environment:
Recommended to download latest XQuartz
| #!/bin/bash | |
| # Build latest version of Emacs, version management with stow | |
| # OS: Ubuntu 14.04 LTS | |
| # version: 24.5 | |
| # Toolkit: lucid | |
| # Warning, use updated version of this script in: https://github.com/favadi/build-emacs | |
| set -e |
| <select | |
| name="customer_id" | |
| id="customer_id" | |
| class="text" | |
| ng-model='filtro.estado' | |
| ng-click="selectItem('estado', filtro.estado, $event)" | |
| ng-options="estado as estado for estado in listas.estados"> | |
| <option value="">Selecione</option> | |
| </select> |
Follow the steps below to setup a local development environment:
Recommended to download latest XQuartz
| $this->info(base_path() . '/*.xls'); | |
| $iterator = new \GlobIterator(base_path() . '/*.xls', \FilesystemIterator::KEY_AS_FILENAME); | |
| $array = iterator_to_array($iterator); | |
| foreach ($array as $file) { | |
| echo $file->getFileName(); | |
| } |
| <?php | |
| $iterator = new \GlobIterator(YOUR_PATH_HERE . '/*.xls', \FilesystemIterator::KEY_AS_FILENAME); | |
| $array = iterator_to_array($iterator); | |
| foreach ($array as $file) { | |
| echo $file->getFileName() . '<br>'; | |
| } |
| <?php | |
| // API access key from Google API's Console | |
| define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
| $registrationIds = array( $_GET['id'] ); | |
| // prep the bundle | |
| $msg = array |
| [ | |
| { | |
| "keys": ["ctrl+shift+j","ctrl+shift+j"], | |
| "command": "javatar", | |
| "args": { | |
| "action": { | |
| "name": "main" | |
| } | |
| } | |
| }, |
| #user nobody; | |
| worker_processes 1; | |
| #error_log logs/error.log; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| #pid logs/nginx.pid; | |
| <?php | |
| use App\Services\Validators\Admin\MailingValidator; | |
| class MailingsController extends \BaseController | |
| { | |
| /** | |
| * Display a listing of the resource. | |
| * GET /mailings |