Last active
February 8, 2017 18:16
-
-
Save evercode1/cfe184edf25085ec586c67de005c77aa to your computer and use it in GitHub Desktop.
chapter 13 TestController.php
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 | |
| 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