@kakallatt How do you handle the creation of the book on the frontend?
Do you make the POST request the usual way, when submitting the form, or by binding form values with v-model and then using vue-resource or Ajax to post the data?
In Jeffreys lession, he is building his alert component to be used when flashing messages with sessions, like you would when flashing messages to regular Laravel Views.To follow along with his example I would recommend that you submit your form "the usual way", without vue-resource or Ajax. You can then use his session->flash('message') example, in the store method of your controller, when redirecting back to the index page of your books, after saving the book to the database.