Skip to content

Commit

Permalink
Merge pull request #125 from hamrahpay/patch-4
Browse files Browse the repository at this point in the history
Create controller.stub
  • Loading branch information
kaidesu committed Dec 3, 2015
2 parents 59d6bd1 + b0ca062 commit 4ffbf4d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Console/Stubs/controller.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
namespace {{namespace}}\{{moduleName}}\Http\Controllers;

use Illuminate\Foundation\Http\FormRequest;
use App\Http\Controllers\Controller;

class {{className}} extends Controller
{

public function index()
{
return "Controller Index";
}

}

0 comments on commit 4ffbf4d

Please sign in to comment.