public function handleDelete()
 {
     $snippet = Snippet::findOrFail(Input::get('snippet'));
     $snippet->delete();
     return Redirect::action('AdminSnippetController@index')->with('flash_dlt_success', 'Oh NO!! You have deleted a page section');
 }