Created
September 13, 2012 20:23
-
-
Save JeffreyWay/3717337 to your computer and use it in GitHub Desktop.
Laravel Resource - Sublime Text 2 Snippet
This file contains 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
<snippet> | |
<content><![CDATA[ | |
// ${1} Resource | |
Route::get('${1}s', array('as' => '${1}s', 'uses' => '${1}s@index')); | |
Route::get('${1}s/(:any)', array('as' => '${1}', 'uses' => '${1}s@show')); | |
Route::get('${1}s/new', array('as' => 'new_${1}', 'uses' => '${1}s@new')); | |
Route::get('${1}s/(:any)edit', array('as' => 'edit_${1}', 'uses' => '${1}s@edit')); | |
Route::post('${1}s', '${1}s@create'); | |
Route::put('${1}s/(:any)', '${1}s@update'); | |
Route::delete('${1}s/(:any)', '${1}s@destroy'); | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>resource</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<scope>source.php</scope> | |
</snippet> |
Jeffrey,
I'm confused by line #7, should there be a "/" between (:any)edit? So that it is (:any)/edit? If not why not, it doesn't seem like that creates a proper url.
Thanks for this though.
Dustin
Agreed with drfraker.
In the video there's a /
drfraker is right and here is the fixed version for it
https://gist.github.com/4683029
Hi
Can you please tell me how to use this, I tried by
Tools -> New Snippet -> and pasted that code there and saved in desktop. Kindly suggest me how to do this.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks ! :)