Skip to content

Melhorias na aplicação

Compare
Choose a tag to compare
@mauricio-msp mauricio-msp released this 06 Jun 14:46
· 4 commits to master since this release

Inclusão de rotas na aplicação, como:

GET
$route->get('/post', 'IndexController@action');
POST
$route->post('/post', 'IndexController@action');
PUT
$route->put('/post/[i:id]', 'IndexController@action');
DELETE
$route->delete('/post/[i:id]', 'IndexController@action');