The best way to ensure your application doesn’t get bad data is to validate the data you save to your database with Laravel Valdiators.
The best way to ensure your application doesn’t get bad data is to validate the data you save to your database with Laravel Valdiators.
We are now at the point where we can begin adding some functionality to our application. In most cases, this requires some sort of data to compute or display. To do that, we need to add a way to add data to our application. Since we are building an application to help coffee enthusiasts find […]
On of the most powerful features of Vue Components or Web components for that matter is all of your CSS, HTML, and Javascript are in the same file. This makes managing all factors of the component extremely easy. If you are using SASS in your project and you want to carry in your variables for […]
This is just a simple update on where we are on the app. We’ve got a single page app ready to rock and roll and now we need to make it look good and actually add some functionality. The last two tutorials were kind of small with Adding SASS to a Vue Component (https://serversideup.net/using-sass-vue-components-laravel-mix/) and […]
One thing that comes in real handy with any app is the ability to add layouts to your application. Laravel does that with the Blade templating system: Blade Templates – Laravel – The PHP Framework For Web Artisans. However, since we are doing a Single Page Application, doing that with Vue Router is a little […]