Skip to content

Allow to indicate API URL when creating form #15

@acacha

Description

@acacha

So we can use submit/post/get/put/delete methods without passing URL (user Laravel default RESTFUL API resource)

Example:

'/person'

        //Persons
        Route::get('/person/{person}',          'PersonController@show');
        Route::post('/person',                  'PersonController@store');
        Route::put('/person/{person}',          'PersonController@update');
        Route::delete('/person/{person}',          'PersonController@destroy');

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions