31 Dec 2019
cat: Laravel, PHP
0 Comments

Laravel Repository Pattern Example

In this tutorial we will implement the repository pattern in Laravel. Repository contains the logic on how data is persisted and how to query the data. It will be most useful to avoid duplicate codes that execute the same queries and hide the complication from the code that wants the data.
15 Dec 2019
cat: Angular 2+
0 Comments

Angular 8 OAuth 2 Keep-alive with Refresh Token

When authenticating to OAuth, the access token is usually short lived and expires after a few hours or minutes. Some apps will want to use the refresh_token grant to refresh the access token to keep the user logged in. In this tutorial we will create an Angular app and with keep-alive using @ng-core, @ng-keepalive, and angular-2-storage for storing tokens.