This is a line of text here.
And this is another paragraph another line
| <?php | |
| namespace App\Console\Commands; | |
| use App\Models\Game; | |
| use App\Models\Season; | |
| use App\Models\Stat; | |
| use App\Models\Team; | |
| use App\Models\Week; | |
| use Illuminate\Console\Command; |
| <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\File; | |
| class AssetsCompile extends Command | |
| { | |
| /** |
| <?php | |
| if ( ! function_exists('parseString')) { | |
| /** | |
| * Parse a string and replace variables in the form of @(varName) | |
| * with values of passed in variables in the form of $varName | |
| * | |
| * @param string $string | |
| * @param array $data | |
| * @param closure $callback |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |