- https://trello.com/b/iuskDHXt/komanda-board
- https://trello.com/b/whv5gtuj/tpt-pin-planner
- https://trello.com/b/1KRMaYUN/bullet-journal-companion-template-
- https://trello.com/b/KQxSg1jW/gs
- https://trello.com/b/4CyRXDgL/demo-m20170600166-logistic
- https://trello.com/b/fpYBRlzg/demo
- https://trello.com/b/EAnzdYGO/sales-team-resources
- https://trello.com/b/51WsEhtE/feature-requests
- https://trello.com/b/yrJ4Ek5D/new-website
- https://trello.com/b/dPSxk29R/bible-checklist
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 | |
namespaced App\Providers; | |
use RuntimeException; | |
use Illuminate\Support\Facades\Route; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Routing\ImplicitRouteBinding; | |
class RouteServiceProvider extends ServiceProvider |
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
Alpine.directive('typed', (el, { expression, modifiers }, { evaluateLater, effect, cleanup }) => { | |
const getStrings = evaluateLater(expression); | |
const modifierValue = (key, fallback) => { | |
if (-1 === modifiers.indexOf(key)) { | |
return fallback; | |
} | |
const value = modifiers[modifiers.indexOf(key) + 1]; | |