Skip to content

Instantly share code, notes, and snippets.

View gbuckingham89's full-sized avatar

George Buckingham gbuckingham89

View GitHub Profile
<?php
namespace App\Charts;
use App\Support\Livewire\ChartComponentData;
use ConsoleTVs\Charts\Classes\Chartjs\Chart;
/**
* Class WanSpeedTestsChart
*
@gbuckingham89
gbuckingham89 / tailwind.config.js
Last active October 19, 2022 19:06
iOS system colors for TailwindCSS
// The color palette is based on the iOS system colors.
// See: https://developer.apple.com/design/human-interface-guidelines/foundations/color/#system-colors-ios
// All colors are their "default" at level 500, then the shades above / below were generated by
// https://www.tailwindshades.com - except the grays, which are the straight-up iOS system gray colors.
colors: {
transparent: 'transparent',
white: '#ffffff',
black: '#000000',
gray: {
DEFAULT: '#8E8E93',
@gbuckingham89
gbuckingham89 / AuthServiceProvider.php
Last active August 22, 2022 12:01
Blog: Laravel Authentication Customer User Provider Demo
<?php
namespace App\Authentication;
use Auth;
use App\Authentication\UserProvider;
use Illuminate\Support\ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{