Method |
Description |
|
create ( ) : Illuminate\Http\Response |
Show the form for creating a new user addresses. |
|
destroy ( integer $id ) : Illuminate\Http\Response |
Remove the specified user address from database. |
|
edit ( integer $id ) : Illuminate\Http\Response |
Show the form for editing the specified user addresses. |
|
index ( ) : Illuminate\Http\Response |
Display a listing of the user addresses. |
|
show ( integer $id ) : Illuminate\Http\Response |
Display the specified user addresses. |
|
store ( AddressRequest $request ) : Illuminate\Http\Response |
Store a newly created user addresses in database. |
|
update ( AddressRequest $request, integer $id ) : Illuminate\Http\Response |
Update the specified user addresses in database. |
|