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
| @extends('layouts.app') | |
| @section('content') | |
| <h1 align="center" >Publicacões</h1> | |
| <div class="div1" style="padding:30px"> |
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; | |
| use Illuminate\Database\Eloquent\Model; | |
| class Estado extends Model | |
| { | |
| protected $fillable = ['sigla', 'descricao']; |
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\Auth; | |
| use App\User; | |
| use App\Http\Controllers\Controller; | |
| use Illuminate\Support\Facades\Validator; | |
| use Illuminate\Foundation\Auth\RegistersUsers; | |
| use App\Estado; |
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
| @extends('layouts.app') | |
| @section('content') | |
| <p></p><h3 align="center">SigeTOQ</h3> | |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-md-8 col-md-offset-2"> | |
| <div class="container" > | |
| <div class="col-md-7" > | |
| <ul class="nav nav-tabs nav-pills nav-justified" > |
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 App\Receita; | |
| use App\Empresa; | |
| use App\Cliente; | |
| use Illuminate\Http\Request; | |
| use DB; | |
| use Storage; | |
| use File; |
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 App\Receita; | |
| use App\Empresa; | |
| use App\Cliente; | |
| use Illuminate\Http\Request; | |
| use DB; | |
| use Storage; |
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 App\Pagamento; | |
| use App\Empresa; | |
| use App\Destino; | |
| use Illuminate\Http\Request; | |
| use DB; | |
| class pagamentos 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\Http\Controllers; | |
| use App\Pagamento; | |
| use App\Empresa; | |
| use App\Destino; | |
| use Illuminate\Http\Request; | |
| use DB; | |
| class pagamentos 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
| @extends('template') | |
| @section('content') | |
| <head> | |
| <script type="text/javascript"> | |
| $(document).ready(function() | |
| { | |
| $("#valor").maskMoney({ | |
| prefix: "R$: ", | |
| decimal: ",", |
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
| @extends('layouts.app') | |
| @section('content') | |
| <head> | |
| <script src="{{ asset('js/jquery-3.2.1.js') }}"></script> | |
| <script src="{{ asset('js/jquery.maskedinput.min.js') }}"></script> | |
| <script type="text/javascript"> | |
| $(document).ready( function() { |