Skip to content

Instantly share code, notes, and snippets.

<?php
if ( ! function_exists( 'bool' ) ) {
function bool( $value, $default = false ): bool {
return filter_var( $value ?? $default, FILTER_VALIDATE_BOOLEAN );
}
}
@LasseRafn
LasseRafn / app.sass
Created December 3, 2019 15:41
ENV display
body
&:before
z-index: 9999999999999
position: fixed
width: 100%
font-size: 10px
left: 0
top: 0
padding: 0 4px
line-height: 9px
const languages = [
"en", "da",
];
const files = [
"products", "dates", "validation",
];
let output = {};
<?php
switch($x) {
case 138:
$activeCell = "Efterårssemesteret 2018";
break;
case 137:
$activeCell = "Forårssemesteret 2018";
break;
<?php
namespace App\Exceptions;
class MigrationsCanOnlyMoveUpException extends \Exception
{
protected $message = 'Never gonna let you down.';
}
$taxPercentage = 25;
echo ( 100 / ( 1 + ( $taxPercentage / 100 ) ) ) / 100; // 0.8
<?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([
::-webkit-input-placeholder {
color: #999;
}
::-moz-placeholder {
color: #999;
}
:-ms-input-placeholder {
color: #999;
}
:-moz-placeholder {
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ProductStoreRequest extends FormRequest
{
public function rules()
{
return [
{..data..}