This file contains hidden or 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
| { | |
| "compilerOptions": { | |
| "outDir": "./public/", | |
| "noImplicitAny": true, | |
| "module": "es6", | |
| "target": "es5", | |
| "jsx": "react", | |
| "allowJs": true | |
| }, | |
| "exclude": [ |
This file contains hidden or 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
| composer require tymon/jwt-auth:dev-develop --prefer-source |
This file contains hidden or 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
| I have same problem. Laravel 5.2, php 7.2 | |
| If change error Line 1185 in 'vendor\laravel\framework\src\Illuminate\Database\Eloquent\Builder.php' to: | |
| $originalWhereCount = is_array($query->wheres) ? count($query->wheres) : 0; | |
| error will be fix, but I am new in Laravel. |
This file contains hidden or 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
| .m-none { margin: 0; } | |
| .p-none { padding: 0; } | |
| .m-t-none { margin-top: 0; } | |
| .p-t-none { padding-top: 0; } | |
| .m-r-none { margin-right: 0; } | |
| .p-r-none { padding-right: 0; } | |
| .m-b-none { margin-bottom: 0; } | |
| .p-b-none { padding-bottom: 0; } | |
| .m-l-none { margin-left: 0; } | |
| .p-l-none { padding-left: 0; } |
This file contains hidden or 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 | |
| /** | |
| * Laravel - A PHP Framework For Web Artisans | |
| * | |
| * @package Laravel | |
| * @author Taylor Otwell <taylor@laravel.com> | |
| */ | |
| define('LARAVEL_START', microtime(true)); |
This file contains hidden or 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
| // Large Devices | |
| @media (min-width:1200px) { | |
| #home-heading { | |
| h3 { | |
| color: blue; | |
| } | |
| } | |
| } | |
| //Medium Devices |
This file contains hidden or 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
| { | |
| "extends": ["react-app", "plugin:prettier/recommended"] | |
| } |
This file contains hidden or 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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div id="app"> |
This file contains hidden or 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
| truncate -s 0 storage/logs/laravel.log |
This file contains hidden or 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
| public function studentPlanPaymentStore(Request $request) | |
| { | |
| # code... | |
| $payment = PaypalPayment::getById($request->paymentId, PaypalPayment::apiContext()); | |
| $execution = PaypalPayment::PaymentExecution()->setPayerId($request->PayerID); | |
| $payment = $payment->execute($execution, PaypalPayment::apiContext()); | |
| dd($payment); |