Skip to content

Instantly share code, notes, and snippets.

<?php
class FIK
{
const REQUIRED_LENGTH = 15;
const INVOICE_ID = 0;
const REMINDER_ID = 3;
public function generate( $invoiceNumber = 1, $isReminder = false ): string
{
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
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.';
}