Quick Tip: How to Use VueJS to Preview Images Before Uploading

Let's say, for example, you're building an app where your users can upload images to their profiles. It's likely you want to preview those images before they are uploaded — it's usually a good way to provide some feedback to...
Read more...

The Ridiculously Easy Way to Animate Your Applications With VueJS

Vue makes it incredibly easy to add transitions to your application. The transitions I'm talking about here are those that run when elements are inserted into or removed from the DOM. An example of this would be showing/hidin...
Read more...

How to Create a Reusable Modal Box in Laravel & VueJS

At some point or another, you'll need to display some modal box in your application. Either for a login form or to edit something or anything else. So I thought it would be really nice if I can create a reusable component tha...
Read more...

Setting Up Ajax Validation with Laravel & VueJS in No Time

It's never been easier to implement form validation in your applications like now with Laravel. All you have to do is to call $this->validate($request, []) from your controller and feed it the rules you want to validate wi...
Read more...