// 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
My XML | |
<?xml version="1.0" encoding="UTF-8"?> | |
<extension type="component" version="3.0" method="upgrade"> | |
<name>testepar</name> | |
<creationDate>Outubro 2023</creationDate> | |
<author>Ribamar FS</author> | |
<authorEmail>[email protected]</authorEmail> | |
<authorUrl>https://ribamar.net.br</authorUrl> | |
<copyright>Copyright (C) 2016 Ribamar FS. All rights reserved.</copyright> |
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
# Instalação do laravel | |
composer create-project laravel/laravel example-app | |
composer create-project laravel/laravel --prefer-dist example-app (usa o cache para deixar a instalação mais rapida) | |
## Instalar da versão 9 do laravel | |
composer create-project laravel/laravel laravel9 9.5.2 |
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
Popular combo de outra tabela | |
Na view create consegui, mas na edit não consigo trazer o registro salvo. | |
Tenho dois CRUDs, compras e produtos | |
Quero mostrar no edit do compras. ao invés de produto_id a descricao do produto. | |
O que já fiz: |
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
<?php | |
/** | |
* Singularize a string. | |
* Converts a word to english singular form. | |
* | |
* Usage example: | |
* {singularize "people"} # person | |
*/ | |
function singularize ($params) | |
{ |
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
import { uid } from './uid.js'; | |
console.log(uid()); | |
//nothing else to import because we are using the built in methods | |
//https://developer.mozilla.org/en-US/docs/Web/API/IDBDatabase | |
const IDB = (function init() { | |
let db = null; | |
let objectStore = null; | |
let DBOpenReq = indexedDB.open('WhiskeyDB', 6); |
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
<?php | |
class ErrorReporting | |
{ | |
public static $errorMessage = 'Oops! Something went wrong.'; | |
private static $cwd; | |
private static $debug; | |
/** |
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
<?php /****************** vi: set fenc=utf-8 ts=4 sw=4 et: ***************** | |
* | |
* Copyright : (C) 2011 Nicolas Grekas. All rights reserved. | |
* Email : [email protected] | |
* License : http://www.gnu.org/licenses/lgpl.txt GNU/LGPL | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU Lesser General Public License as | |
* published by the Free Software Foundation, either version 3 of the | |
* License, or (at your option) any later version. |
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
Brincando com arrays múltiplos | |
Quer ver algo que me enrolava todo? Arrays múltiplos. | |
Como faço paga pegar alguns dos seus elementos? | |
Exemplo para diversão e aprendizado: | |
Array ( [0] => 1 [1] => Array ( [0] => App\Controllers\ProductController Object ( ) [1] => edit ) [2] => Array ( [table] => product [action] => edit [id] => 3 ) ) |
NewerOlder