Skip to content

Instantly share code, notes, and snippets.

@evercode1
Last active February 8, 2017 18:16
Show Gist options
  • Select an option

  • Save evercode1/cfe184edf25085ec586c67de005c77aa to your computer and use it in GitHub Desktop.

Select an option

Save evercode1/cfe184edf25085ec586c67de005c77aa to your computer and use it in GitHub Desktop.
chapter 13 TestController.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Facades\App\Utilities\RocketShip;
class TestController extends Controller
{
public function index()
{
return RocketShip::blastOff();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment