Guest User

Untitled

a guest
Jul 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Route::get('customers','CustomerController@index')->name('customer-index');
  2. Route::get('customers/create','CustomerController@create')->name('customer-create');
  3. Route::post('customers','CustomerController@store')->name('customer-store');
  4. Route::get('customers/{customer}/edit','CustomerController@edit')->name('customer-edit');
  5. Route::patch('customers/{customer}','CustomerController@update')->name('customer-update');
  6. Route::delete('customers/{customer},'CustomerController@destroy')->name('customer-destroy');
Add Comment
Please, Sign In to add comment