Technology
Posts about tech
Python Tips
Useful Python tricks......
Getting Started with SQLite
SQLite is a lightweight database......
ROUTE DEBUG INFORMATION
Route Pattern:
~^/category/(?<category>[\w\-]+)$~i
Matched Route:
category
Request URI:
/category/technology
Controller:
CategoryController@show
User Role:
None
Request Method:
GET
Captured Parameters:
[0] => '/category/technology' 'category' => 'technology' [1] => 'technology'
Execution Time:
0.0684 seconds