เบื้องต้น เรามารู้จักกับ Routing กัน
ตัวอย่าง
Route::get('foo', function () {
return 'Hello World';
});
จากตัวอย่างข้างต้น หากเราเรียก URL https://www.storesite.co.th/foo การทำงานของ Routing จะแสดงผลหน้าจอว่า "Hello World"
วิธีเรียก Routing แบบต่างๆ ประกอบด้วยดังนี้
Route::get($uri, $callback);
Route::post($uri, $callback);
Route::put($uri, $callback);
Route::patch($uri, $callback);
Route::delete($uri, $callback);
Route::options($uri, $callback)
การใช้งานหลักๆ จะเป็น GET / POST method สำหรับการพัฒนาระบบ
CSRF Protection คืออะไร ?
เป็นการป้องกัน Cross-site Request Forgery โดยใช้ Token ซึ่งเป็นการป้องกันช่องโหว่และความปลอดภัยสำหรับการรับส่งข้อมูลผ่าน HTTP request
ตัวอย่าง
<
form method
="
POST
"
action
="/
profile
"> {{
csrf_field
() }} ...
form
>