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
diff --git a/lib/web/jquery/bootstrap/collapse.js b/lib/web/jquery/bootstrap/collapse.js | |
index 95e28cec248..5a978bcfafb 100644 | |
--- a/lib/web/jquery/bootstrap/collapse.js | |
+++ b/lib/web/jquery/bootstrap/collapse.js | |
@@ -32,7 +32,7 @@ define([ | |
const VERSION = '5.1.3' | |
const NAME = 'collapse' | |
const DATA_KEY = 'bs.collapse' | |
- const EVENT_KEY = `.${DATA_KEY}` | |
+ const EVENT_KEY = `.${DATA_KEY}`; |
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
#!/bin/sh | |
PHPCS=`which phpcs` | |
PHPCBF=`which phpcbf` | |
if [ -z $PHPCS ] || [ -z $PHPCBF ] | |
then | |
printf "\n\e[38;5;255,255,255m" | |
printf "💥 Error: The required tools 'phpcs' and/or 'phpcbf' could not be found in your path.\n\n" | |
printf "You can install both tools globally by running:\n\n" |
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
Quickbooks User | |
| | |
|------------ Company 1 | |
| |----------- Customer 1 | |
| |----------- Customer 2 | |
| |----------- Customer 1 | |
|------------ Company 2 | |
| |----------- Customer 4 | |
| |----------- Customer 5 | |
|------------ Acme Ltd |
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 | |
class CsCartValetDriver extends ValetDriver | |
{ | |
const INSTALL_PATHS = ['/install/', '/install', '/install/index.php']; | |
const INSTALL_CONTROLLER = '/install/index.php'; | |
protected $admin; | |
protected $customer; |
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
cat /dev/null > ~/.bash_history && history -c && exit |
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 | |
Route::get('/', function() | |
{ | |
// Return our basic form view | |
return View::make("form"); | |
}); | |
Route::post('/', function() | |
{ | |
// Build the input for our validation |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>File Upload</title> | |
</head> | |
<body> | |
@if (Session::has("message")) | |
{{ Session::get("message") }} | |
@endif | |
<hr /> |
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
<li class="{{ (Route::getCurrentRoute()->getAction()["as"] == "dashboard.index") ? 'active' : '' }}"><a href="{{ route("dashboard.index") }}">Home</a></li> | |
<li class="{{ (Route::getCurrentRoute()->getAction()["as"] == "reports.index") ? 'active' : '' }}"><a href="{{ route("reports.index") }}">Reports</a></li> | |
<li class="{{ (Route::getCurrentRoute()->getAction()["as"] == "settings.index") ? 'active' : '' }}"><a href="{{ route("settings.index") }}">Settings</a></li> |
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
n - New Tweet gh - Home | |
l - Like go - Moments | |
r - Reply gn - Notifications | |
t - Retweet gr - Mentions | |
m - Direct message gp - Profile | |
u - Mute User gl - Likes | |
b - Block User gi - Lists | |
Enter - Open Tweet details gm - Messages | |
o - Expand photo gs - Settings | |
/ - Search gu - Go to user |
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 | |
namespace App\Nova; | |
use App\Nova\Actions\ExportOrders; | |
class Order extends Resource | |
{ | |
// snipped.. |
NewerOlder