Viewing: editor_notes.php
<?php Route::get('/admin-editor-note', 'EditorNote\EditorNoteController@index')->name('admin.editor.note'); //Route::get('/create-editor-note', 'EditorNote\EditorNoteController@create')->name('createTestimonial'); //Route::post('/add-editor-note', 'EditorNote\EditorNoteController@store')->name('addTestimonial'); Route::get('/edit-editor-note/{id}', 'EditorNote\EditorNoteController@edit')->name('editEditorNote'); Route::post('editor-note/update', 'EditorNote\EditorNoteController@update')->name('updateEditorNotel'); Route::post('testimonial/delete', 'EditorNote\EditorNoteController@destroy')->name('deleteTestimonial'); Route::get('testimonial/status/{id}', 'EditorNote\EditorNoteController@status')->name('statusTestimonial');
Return