// jQuery
$(document).ready(function() {
// code
})
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
############################################################################## | |
# INSTALL isolated PHP 5.6 ZTS (Thread-safe) with pthreads on Ubuntu 14.04 ### | |
############################################################################## | |
1) Install necessary bison version | |
wget http://launchpadlibrarian.net/140087283/libbison-dev_2.7.1.dfsg-1_amd64.deb | |
wget http://launchpadlibrarian.net/140087282/bison_2.7.1.dfsg-1_amd64.deb | |
dpkg -i libbison-dev_2.7.1.dfsg-1_amd64.deb | |
dpkg -i bison_2.7.1.dfsg-1_amd64.deb |
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
Route::group(['prefix' => 'admin', 'middleware' => 'auth'], function() | |
{ | |
Route::get('/',['as'=>'admin.index', 'uses' => 'Admin\DashboardController@index']); | |
Route::get('dashboard', ['as'=>'admin.dashboard', 'uses' => 'Admin\DashboardController@index']); | |
}); |
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
@extends('layout/admin') | |
@section('conteudo') | |
<h2 class="text-right">Despesa simples</h2><br> | |
<div id="contentProduto" class="row"> | |
<div class="col-md-7"> |
Source: http://blog.8thlight.com/uncle-bob/2013/09/23/Test-first.html
- tests are specs for the system and are more important than the system itself
- (Tests should be) short, well factored, and well named. They ought to read like specifications; because they are specifications
- (Goal:) trust your test suite to the extent that, if it passes, you know you