Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Created September 13, 2012 20:23
Show Gist options
  • Star 36 You must be signed in to star a gist
  • Fork 38 You must be signed in to fork a gist
  • Save JeffreyWay/3717337 to your computer and use it in GitHub Desktop.
Save JeffreyWay/3717337 to your computer and use it in GitHub Desktop.
Laravel Resource - Sublime Text 2 Snippet
<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>
@simonj
Copy link

simonj commented Sep 29, 2012

Thanks ! :)

@drfraker
Copy link

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

@RomainGoncalves
Copy link

Agreed with drfraker.

In the video there's a /

@meSingh
Copy link

meSingh commented Jan 31, 2013

drfraker is right and here is the fixed version for it
https://gist.github.com/4683029

@mavinothkumar
Copy link

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