File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -64,4 +64,7 @@ filter:
6464 https://stackoverflow.com/questions/149055/how-to-format-numbers-as-currency-string
6565 https://www.youtube.com/watch?v=j97QtHf0CHY&t=882s
6666
67- pagination laravel vue: https://github.com/gilbitron/laravel-vue-pagination
67+ pagination laravel vue: https://github.com/gilbitron/laravel-vue-pagination
68+
69+ https://viblo.asia/p/restful-api-trong-laravel-cho-nguoi-moi-bat-dau-ByEZkNaqKQ0
70+ https://www.youtube.com/watch?v=Na2kVLVGJ4Y&list=PLE_gxCZQDh4-55n7ZoY3vgXUla7IMnVY0
Original file line number Diff line number Diff line change 1616Route::middleware ('auth:api ' )->get ('/user ' , function (Request $ request ) {
1717 return $ request ->user ();
1818});
19+
20+ Route::post ('save_student ' , 'StudentController@save_student ' );
21+ Route::get ('all_students ' , 'StudentController@all_students ' );
22+ Route::get ('edit_student/{id} ' , 'StudentController@edit_student ' );
23+ Route::put ('update_student ' , 'StudentController@update_student ' );
24+ Route::delete ('delete_student/{id} ' , 'StudentController@delete_student ' );
You can’t perform that action at this time.
0 commit comments