As with all projects, we start by setting things up. We'll scaffold a new Laravel project, configure Elixir, prepare our Laravel's main view, and create our very first Vue page component. Please note that since this series is...
Read more...
Please note that this series is using Vue 1.0. You can still read it if you're using Vue 2.0, though, since there's not much difference between both in terms of the API. Also, note that some of the tools and approaches used h...
Read more...
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...
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...