Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Full-Stack Vue.js 2 and Laravel 5
Full-Stack Vue.js 2 and Laravel 5

Full-Stack Vue.js 2 and Laravel 5: Bring the frontend and backend together with Vue, Vuex, and Laravel

eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Full-Stack Vue.js 2 and Laravel 5

Prototyping Vuebnb, Your First Vue.js Project

In this chapter, we will learn the basic features of Vue.js. We'll then put this knowledge into practice by building a prototype of the case-study project, Vuebnb.

Topics this chapter covers:

  • Installation and basic configuration of Vue.js
  • Vue.js essential concepts, such as data binding, directives, watchers and lifecycle hooks
  • How Vue's reactivity system works
  • Project requirements for the case-study project
  • Using Vue.js to add page content including dynamic text, lists, and a header image
  • Building an image modal UI feature with Vue

Vuebnb prototype

In this chapter, we'll be building a prototype of Vuebnb, the case-study project that runs for the duration of this book. The prototype will just be of the listing page, and by the end of the chapter will look like this:

Figure 2.1. Vuebnb prototype

Once we've set up our backend in Chapter 3, Setting Up a Laravel Development Environment, and Chapter 4, Building a Web Service with Laravel, we'll migrate this prototype into the main project.

Project code

Before we begin, you'll need to download the code base to your computer by cloning it from GitHub. Instructions are given in the section Code base in Chapter 1, Hello Vue - An Introduction to Vue.js.

The folder vuebnb...

Installing Vue.js

Now it's time to add the Vue.js library to our project. Vue was downloaded as part of our NPM install, so now we can simply link to the browser-build of Vue.js with a script tag.

index.html:

<body>
<div id="toolbar">...</div>
<div id="app">...</div>
<script src="node_modules/vue/dist/vue.js"></script>
<script src="app.js"></script>
</body>
It's important that we include the Vue library before our own custom app.js script, as scripts run sequentially.

Vue will now be registered as a global object. We can test this by going to our browser and typing the following in the JavaScript console:

console.log(Vue);

Here is the result:

Figure 2.3. Checking Vue is registered as a global object
...

Page content

With our environment set up and starter code installed, we're now ready to take the first steps in building the Vuebnb prototype.

Let's add some content to the page, including the header image, the title, and the About section. We'll be adding structure to our HTML file and using Vue.js to insert the correct content where we need it.

The Vue instance

Looking at our app.js file, let's now create our root instance of Vue.js by using the new operator with the Vue object.

app.js:

var app = new Vue();

When you create a Vue instance, you will usually want to pass in a configuration object as an argument. This object is where your project's custom...

Header image

No room listing would be complete without a big, glossy image to show it off. We've got a header image in our mock listing that we'll now include. Add this markup to the page.

index.html:

<div id="app">
  <div class="header">
    <div class="header-img"></div>
  </div>
  <div class="container">...</div>
</div>

And this to the CSS file.

style.css:

.header {
  height: 320px;
}

.header .header-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #f5f5f5;
  height: 100%;
}

You may be wondering why we're using a div rather than an img tag. To help with positioning, we're going to set our image as the background of the div with the header-img class.

...

Lists section

The next bit of content we'll add to our page is the Amenities and Prices lists:

Figure 2.7. Lists section

If you look at the mock-listing sample, you'll see that the amenities and prices properties on the object are both arrays.

sample/data.js:

var sample = {
  title: '...',
  address: '...',
  about: '...',
  amenities: [
    {
      title: 'Wireless Internet',
      icon: 'fa-wifi'
    },
    {
      title: 'Pets Allowed',
      icon: 'fa-paw'
    },
    ...
  ],
  prices: [
    {
      title: 'Per night',
      value: '$89'
    },
    {
      title: 'Extra people',
      value: 'No charge'
    },
    ...
  ]
}

Wouldn't it be easy if we could just loop over these arrays and print each item to the...

Vuebnb prototype


In this chapter, we'll be building a prototype of Vuebnb, the case-study project that runs for the duration of this book. The prototype will just be of the listing page, and by the end of the chapter will look like this:

Figure 2.1. Vuebnb prototype

Once we've set up our backend in Chapter 3, Setting Up a Laravel Development Environment, and Chapter 4, Building a Web Service with Laravel, we'll migrate this prototype into the main project.

Project code

Before we begin, you'll need to download the code base to your computer by cloning it from GitHub. Instructions are given in the section Code base in Chapter 1Hello Vue - An Introduction to Vue.js.

The folder vuebnb-prototype has the project code for the prototype we'll now be building. Change into that folder and list the contents:

$ cd vuebnb-prototype
$ ls -la

The folder contents should look like this:

Figure 2.2. vuebnb-prototype project files

Note

Unless otherwise specified, all further Terminal commands in this chapter will...

Installing Vue.js


Now it's time to add the Vue.js library to our project. Vue was downloaded as part of our NPM install, so now we can simply link to the browser-build of Vue.js with a script tag.

index.html:

<body>
<div id="toolbar">...</div>
<div id="app">...</div>
<script src="node_modules/vue/dist/vue.js"></script>
<script src="app.js"></script>
</body>

Note

It's important that we include the Vue library before our own custom app.js script, as scripts run sequentially.

Vue will now be registered as a global object. We can test this by going to our browser and typing the following in the JavaScript console:

console.log(Vue);

Here is the result:

Figure 2.3. Checking Vue is registered as a global object

Page content


With our environment set up and starter code installed, we're now ready to take the first steps in building the Vuebnb prototype.

Let's add some content to the page, including the header image, the title, and the About section. We'll be adding structure to our HTML file and using Vue.js to insert the correct content where we need it.

The Vue instance

Looking at our app.js file, let's now create our root instance of Vue.js by using the new operator with the Vue object.

app.js:

var app = new Vue();

When you create a Vue instance, you will usually want to pass in a configuration object as an argument. This object is where your project's custom data and functions are defined.

app.js:

var app = new Vue({
  el: '#app'
});

As our project progresses, we'll be adding much more to this configuration object, but for now we've just added the el property that tells Vue where to mount itself in the page.

You can assign to it a string (a CSS selector) or an HTML node object. In our case, we've used...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • End-to-end guide on full-stack development with Vue.js 2 and Laravel 5
  • Developing modern user interfaces with a reusable component-based architecture
  • Use Webpack to improve applications performance and development workflow
  • Explore the features of Vuex to build applications that are powerful, consistent, and maintainable

Description

Vue is a JavaScript framework that can be used for anything from simple data display to sophisticated front-end applications and Laravel is a PHP framework used for developing fast and secure web-sites. This book gives you practical knowledge of building modern full-stack web apps from scratch using Vue with a Laravel back end. In this book, you will build a room-booking website named "Vuebnb". This project will show you the core features of Vue, Laravel and other state-of-the-art web development tools and techniques. The book begins with a thorough introduction to Vue.js and its core concepts like data binding, directives and computed properties, with each concept being explained first, then put into practice in the case-study project. You will then use Laravel to set up a web service and integrate the front end into a full-stack app. You will be shown a best-practice development workflow using tools like Webpack and Laravel Mix. With the basics covered, you will learn how sophisticated UI features can be added using ES+ syntax and a component-based architecture. You will use Vue Router to make the app multi-page and Vuex to manage application state. Finally, you will learn how to use Laravel Passport for authenticated AJAX requests between Vue and the API, completing the full-stack architecture. Vuebnb will then be prepared for production and deployed to a free Heroku cloud server.

Who is this book for?

This book targets developers who are new to Vue.js, Laravel, or both, and are seeking a practical, best-practice approach to development with these technologies. They must have some knowledge of HTML, CSS and Javascript.

What you will learn

  • Use the Core features of Vue.js to create sophisticated user interfaces
  • Build a secure backend API with Laravel
  • Learn a state-of-the-art web development workflow with Webpack
  • Learn about full-stack app design principles and best practices
  • Learn to deploy a full-stack app toa cloud server and CDN
  • Manage complex application state with Vuex
  • Secure a web service with Laravel Passport

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 28, 2017
Length: 376 pages
Edition : 1st
Language : English
ISBN-13 : 9781788296717
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Dec 28, 2017
Length: 376 pages
Edition : 1st
Language : English
ISBN-13 : 9781788296717
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 115.97
Vue.js 2 Design Patterns and Best Practices
€36.99
Full-Stack Vue.js 2 and Laravel 5
€36.99
Vue.js 2.x by Example
€41.99
Total 115.97 Stars icon
Banner background image

Table of Contents

10 Chapters
Hello Vue – An Introduction to Vue.js Chevron down icon Chevron up icon
Prototyping Vuebnb, Your First Vue.js Project Chevron down icon Chevron up icon
Setting Up a Laravel Development Environment Chevron down icon Chevron up icon
Building a Web Service with Laravel Chevron down icon Chevron up icon
Integrating Laravel and Vue.js with Webpack Chevron down icon Chevron up icon
Composing Widgets with Vue.js Components Chevron down icon Chevron up icon
Building a Multi-Page App with Vue Router Chevron down icon Chevron up icon
Managing Your Application State with Vuex Chevron down icon Chevron up icon
Adding a User Login and API Authentication with Passport Chevron down icon Chevron up icon
Deploying a Full-Stack App to the Cloud Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.5
(15 Ratings)
5 star 80%
4 star 6.7%
3 star 6.7%
2 star 0%
1 star 6.7%
Filter icon Filter
Top Reviews

Filter reviews by




Angelyn Jan 22, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book does an great job of demonstrating a full stack Vue and Laravel app. I like that the app that you build throughout the book is actually quite realistic and is pretty impressive, unlike other books that make you build some pointless todo app.In addition to Vue and Laravel, the book does cover a lot of material including Webpack, VueRouter, Vuex, Passport etc, but only really scratches the surface on these. The focus is more on how to use them together in a single app.My only frustration was having to set up Homestead when I normally use Valet, but it does cover a solid approach to full stack development.
Amazon Verified review Amazon
Devin Hyden Feb 11, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Anthony has a great way of sharing information. I’ve been using Vue.js and Laravel for a while now. I was ready to improve my Vue.js skills. This books covers just that, single page application; vuex, vue-router, and child components. The companion project was fun to build.I recommend this book to others.
Amazon Verified review Amazon
JONATHON R BIRRELL Feb 09, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
There are a number of books now that tackle Vue.js, but this one is my favorite so far. It gets to the point and doesn't waste time rewriting the documentation, instead focusing on application of the concepts. The book is sold as "a masterclass in full stack development with Vue and Laravel" which I think it lives up to.Could have gotten into more detail on Webpack, though I guess you can't expect everything from a single book.
Amazon Verified review Amazon
Leon de Beer Jan 16, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent edition to your reference library as well as for learning VueJS.What I liked most about Anthony's book is the real-world application used to build out the knowledge on. It's the difference between being given the bare minimum basics of an aspect and then grappling with implementation in a real-world scenario, and being given the theory - as well as sound implementation in a decent sized application.In so doing you get to learn and experience interaction nuances, not only for VueJS but Laravel as well, which, for me is the best learning experience. The book is also packed with extras you are going to have to master in your VueJS journey and so is one the best investments I've made in my knowledge quest.
Amazon Verified review Amazon
Pham Huu Truong Mar 01, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The title of the book is Fullstack with VueJS2 and Laravel5. But most of the contents are focused in VueJS2.Because I already have experience with Laravel then I dont need much time to understand about settings with Laravel.In my opinion, if you don't have any idea about web programming, then you better should begin with Laravel first. Laravel Up and Running is a good book too, but it does not provide any good project for you to work with that, so it would be better if you try to make a CRUD or todo list with Laravel then go with VueJS
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.