Skip to content

Instantly share code, notes, and snippets.

@ferdiunal
Created April 15, 2016 19:48
Show Gist options
  • Save ferdiunal/57a4dccf412267813d15ba4cc99a8db6 to your computer and use it in GitHub Desktop.
Save ferdiunal/57a4dccf412267813d15ba4cc99a8db6 to your computer and use it in GitHub Desktop.
<?php
Route::group(['middleware' => 'web'],function(){
Route::get('post',['as' => 'post.index','uses' => 'PostController@index']); // Burada Post sayfasını görüntüleyeceğiz.
Route::post('post',['middleware' => 'throttle:5','uses' => 'PostController@store']) // middleware eklememizin sebebi, art arda sunucu istekleini engellemek
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment