Skip to content

Instantly share code, notes, and snippets.

function generateFormData() {
// define upload field
let file_input = document.getElementById('profile_picture');
// define form data
let data = new FormData();
// Add regular text field
data.append("name", "John Doe");
<?php
/*
* Various of other things going on up here. I slimmed down the code for readability,
* and focus. $companies is an array of .. companies .. gathered from an external API.
*/
$companiesToCreate = collect([]);
foreach ( $companies as $company )
{
<?php
namespace App\Nav;
class NavItem {
public static function render($routeName, $text = '') {
return '<li' . ($routeName === \Route::currentRouteName() ? 'class="active"' : '') . '><a href="' . route($routeName) . '">' . $text . '</a></li>';
}
}
{
"product": {..data..}
}
{..data..}
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ProductStoreRequest extends FormRequest
{
public function rules()
{
return [
::-webkit-input-placeholder {
color: #999;
}
::-moz-placeholder {
color: #999;
}
:-ms-input-placeholder {
color: #999;
}
:-moz-placeholder {
<?php
// Create Instance
$dinero = new \LasseRafn\Dinero\Dinero( $clientId, $clientSecret ); // Client ID + Secret gotten from Dinero
// Auth to a Dinero account
$dinero->auth( $apiKey, $orgId ); // API key created in Dinero + company ID (bottom left when logged in)
// Create the invoice
$invoice = $dinero->invoices()->create([
$taxPercentage = 25;
echo ( 100 / ( 1 + ( $taxPercentage / 100 ) ) ) / 100; // 0.8
<?php
namespace App\Exceptions;
class MigrationsCanOnlyMoveUpException extends \Exception
{
protected $message = 'Never gonna let you down.';
}