├── .gitignore ├── Chapter02 ├── .gitignore ├── README.md ├── app.js ├── favicon.ico ├── index.html ├── logo.png ├── package.json ├── sample │ ├── data.js │ └── header.jpg └── style.css ├── Chapter03 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ └── 2014_10_12_100000_create_password_resets_table.php │ └── seeds │ │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── images │ │ │ └── logo_grey.png │ │ ├── js │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── components │ │ │ │ ├── Example.vue │ │ │ │ └── ExampleComponent.vue │ │ │ └── helpers.js │ │ └── sass │ │ │ ├── _variables.scss │ │ │ └── app.scss │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter04 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ └── ListingController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── ListingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── images │ │ │ └── logo_grey.png │ │ ├── js │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── components │ │ │ │ ├── Example.vue │ │ │ │ └── ExampleComponent.vue │ │ │ └── helpers.js │ │ └── sass │ │ │ ├── _variables.scss │ │ │ └── app.scss │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter05 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ └── ListingController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── ListingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── logo.png │ │ │ └── logo_grey.png │ │ └── js │ │ │ ├── app.js │ │ │ └── helpers.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter06 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ └── ListingController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── ListingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── components │ │ │ ├── CarouselControl.vue │ │ │ ├── ExpandableText.vue │ │ │ ├── FeatureList.vue │ │ │ ├── HeaderImage.vue │ │ │ ├── ImageCarousel.vue │ │ │ ├── ListingPage.vue │ │ │ └── ModalWindow.vue │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── logo.png │ │ │ └── logo_grey.png │ │ └── js │ │ │ ├── app.js │ │ │ └── helpers.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter07 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ └── ListingController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── ListingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── components │ │ │ ├── App.vue │ │ │ ├── CarouselControl.vue │ │ │ ├── CustomFooter.vue │ │ │ ├── ExpandableText.vue │ │ │ ├── FeatureList.vue │ │ │ ├── HeaderImage.vue │ │ │ ├── HomePage.vue │ │ │ ├── ImageCarousel.vue │ │ │ ├── ListingPage.vue │ │ │ ├── ListingSummary.vue │ │ │ ├── ListingSummaryGroup.vue │ │ │ └── ModalWindow.vue │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── logo.png │ │ │ └── logo_grey.png │ │ └── js │ │ │ ├── app.js │ │ │ ├── helpers.js │ │ │ ├── route-mixin.js │ │ │ └── router.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter08 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ └── ListingController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── ListingsTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── components │ │ │ ├── App.vue │ │ │ ├── CarouselControl.vue │ │ │ ├── CustomFooter.vue │ │ │ ├── ExpandableText.vue │ │ │ ├── FeatureList.vue │ │ │ ├── HeaderImage.vue │ │ │ ├── HomePage.vue │ │ │ ├── ImageCarousel.vue │ │ │ ├── ListingPage.vue │ │ │ ├── ListingSave.vue │ │ │ ├── ListingSummary.vue │ │ │ ├── ListingSummaryGroup.vue │ │ │ ├── ModalWindow.vue │ │ │ └── SavedPage.vue │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── logo.png │ │ │ └── logo_grey.png │ │ └── js │ │ │ ├── app.js │ │ │ ├── helpers.js │ │ │ ├── router.js │ │ │ └── store.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter09 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ ├── ListingController.php │ │ │ └── UserController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ ├── ListingsTableSeeder.php │ │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── components │ │ │ ├── App.vue │ │ │ ├── CarouselControl.vue │ │ │ ├── CustomFooter.vue │ │ │ ├── ExpandableText.vue │ │ │ ├── FeatureList.vue │ │ │ ├── HeaderImage.vue │ │ │ ├── HomePage.vue │ │ │ ├── ImageCarousel.vue │ │ │ ├── ListingPage.vue │ │ │ ├── ListingSave.vue │ │ │ ├── ListingSummary.vue │ │ │ ├── ListingSummaryGroup.vue │ │ │ ├── LoginPage.vue │ │ │ ├── ModalWindow.vue │ │ │ └── SavedPage.vue │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── logo.png │ │ │ └── logo_grey.png │ │ └── js │ │ │ ├── app.js │ │ │ ├── helpers.js │ │ │ ├── router.js │ │ │ └── store.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── Chapter10 ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── app │ ├── Console │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── Controller.php │ │ │ ├── ListingController.php │ │ │ └── UserController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Listing.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── User.php │ └── helpers.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── data.json │ ├── factories │ │ ├── ModelFactory.php │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ └── 2017_06_20_133317_create_listings_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ ├── ListingsTableSeeder.php │ │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── components │ │ │ ├── App.vue │ │ │ ├── CarouselControl.vue │ │ │ ├── CustomFooter.vue │ │ │ ├── ExpandableText.vue │ │ │ ├── FeatureList.vue │ │ │ ├── HeaderImage.vue │ │ │ ├── HomePage.vue │ │ │ ├── ImageCarousel.vue │ │ │ ├── ListingPage.vue │ │ │ ├── ListingSave.vue │ │ │ ├── ListingSummary.vue │ │ │ ├── ListingSummaryGroup.vue │ │ │ ├── LoginPage.vue │ │ │ ├── ModalWindow.vue │ │ │ └── SavedPage.vue │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ ├── logo.png │ │ │ └── logo_grey.png │ │ └── js │ │ │ ├── app.js │ │ │ ├── helpers.js │ │ │ ├── router.js │ │ │ └── store.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── app.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── scripts │ └── ftp.js ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock ├── LICENSE ├── README.md ├── images ├── 1 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 2 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 3 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 4 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 5 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 6 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 7 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 8 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 9 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 10 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 11 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 12 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 13 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 14 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 15 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 16 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 17 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 18 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 19 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 20 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 21 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 22 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 23 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 24 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 25 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 26 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 27 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 28 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── 29 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg └── 30 │ ├── Image_1.jpg │ ├── Image_1_thumb.jpg │ ├── Image_2.jpg │ ├── Image_3.jpg │ └── Image_4.jpg ├── vuebnb-prototype ├── .gitignore ├── README.md ├── app.js ├── favicon.ico ├── index.html ├── logo.png ├── package.json ├── sample │ ├── data.js │ └── header.jpg └── style.css └── vuebnb ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── data.json ├── factories │ ├── ModelFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_100000_create_password_resets_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt └── web.config ├── readme.md ├── resources ├── assets │ ├── images │ │ └── logo_grey.png │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── components │ │ │ ├── Example.vue │ │ │ └── ExampleComponent.vue │ │ └── helpers.js │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── scripts └── ftp.js ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Chapter02/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/app.js -------------------------------------------------------------------------------- /Chapter02/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/favicon.ico -------------------------------------------------------------------------------- /Chapter02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/index.html -------------------------------------------------------------------------------- /Chapter02/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/logo.png -------------------------------------------------------------------------------- /Chapter02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/package.json -------------------------------------------------------------------------------- /Chapter02/sample/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/sample/data.js -------------------------------------------------------------------------------- /Chapter02/sample/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/sample/header.jpg -------------------------------------------------------------------------------- /Chapter02/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter02/style.css -------------------------------------------------------------------------------- /Chapter03/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/.env.example -------------------------------------------------------------------------------- /Chapter03/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/.gitattributes -------------------------------------------------------------------------------- /Chapter03/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/.gitignore -------------------------------------------------------------------------------- /Chapter03/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/LICENSE -------------------------------------------------------------------------------- /Chapter03/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter03/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter03/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Chapter03/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter03/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Chapter03/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /Chapter03/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Chapter03/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/app/User.php -------------------------------------------------------------------------------- /Chapter03/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/artisan -------------------------------------------------------------------------------- /Chapter03/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter03/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter03/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/composer.json -------------------------------------------------------------------------------- /Chapter03/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/composer.lock -------------------------------------------------------------------------------- /Chapter03/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/app.php -------------------------------------------------------------------------------- /Chapter03/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/auth.php -------------------------------------------------------------------------------- /Chapter03/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter03/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/cache.php -------------------------------------------------------------------------------- /Chapter03/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/database.php -------------------------------------------------------------------------------- /Chapter03/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/filesystems.php -------------------------------------------------------------------------------- /Chapter03/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/mail.php -------------------------------------------------------------------------------- /Chapter03/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/queue.php -------------------------------------------------------------------------------- /Chapter03/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/services.php -------------------------------------------------------------------------------- /Chapter03/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/session.php -------------------------------------------------------------------------------- /Chapter03/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/config/view.php -------------------------------------------------------------------------------- /Chapter03/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter03/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/database/data.json -------------------------------------------------------------------------------- /Chapter03/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /Chapter03/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter03/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/package.json -------------------------------------------------------------------------------- /Chapter03/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/phpunit.xml -------------------------------------------------------------------------------- /Chapter03/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/public/.htaccess -------------------------------------------------------------------------------- /Chapter03/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/public/index.php -------------------------------------------------------------------------------- /Chapter03/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter03/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/public/web.config -------------------------------------------------------------------------------- /Chapter03/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/readme.md -------------------------------------------------------------------------------- /Chapter03/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter03/resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter03/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter03/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Chapter03/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter03/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter03/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter03/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter03/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /Chapter03/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/routes/api.php -------------------------------------------------------------------------------- /Chapter03/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/routes/channels.php -------------------------------------------------------------------------------- /Chapter03/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/routes/console.php -------------------------------------------------------------------------------- /Chapter03/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/routes/web.php -------------------------------------------------------------------------------- /Chapter03/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter03/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/server.php -------------------------------------------------------------------------------- /Chapter03/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter03/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter03/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter03/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter03/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter03/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter03/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter03/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/webpack.mix.js -------------------------------------------------------------------------------- /Chapter03/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter03/yarn.lock -------------------------------------------------------------------------------- /Chapter04/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/.env.example -------------------------------------------------------------------------------- /Chapter04/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/.gitattributes -------------------------------------------------------------------------------- /Chapter04/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/.gitignore -------------------------------------------------------------------------------- /Chapter04/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/LICENSE -------------------------------------------------------------------------------- /Chapter04/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter04/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter04/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Chapter04/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter04/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Chapter04/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /Chapter04/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Listing.php -------------------------------------------------------------------------------- /Chapter04/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Chapter04/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/app/User.php -------------------------------------------------------------------------------- /Chapter04/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/artisan -------------------------------------------------------------------------------- /Chapter04/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter04/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter04/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/composer.json -------------------------------------------------------------------------------- /Chapter04/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/composer.lock -------------------------------------------------------------------------------- /Chapter04/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/app.php -------------------------------------------------------------------------------- /Chapter04/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/auth.php -------------------------------------------------------------------------------- /Chapter04/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter04/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/cache.php -------------------------------------------------------------------------------- /Chapter04/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/database.php -------------------------------------------------------------------------------- /Chapter04/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/filesystems.php -------------------------------------------------------------------------------- /Chapter04/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/mail.php -------------------------------------------------------------------------------- /Chapter04/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/queue.php -------------------------------------------------------------------------------- /Chapter04/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/services.php -------------------------------------------------------------------------------- /Chapter04/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/session.php -------------------------------------------------------------------------------- /Chapter04/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/config/view.php -------------------------------------------------------------------------------- /Chapter04/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter04/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/database/data.json -------------------------------------------------------------------------------- /Chapter04/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /Chapter04/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter04/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/package.json -------------------------------------------------------------------------------- /Chapter04/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/phpunit.xml -------------------------------------------------------------------------------- /Chapter04/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/public/.htaccess -------------------------------------------------------------------------------- /Chapter04/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter04/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/public/index.php -------------------------------------------------------------------------------- /Chapter04/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter04/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/public/web.config -------------------------------------------------------------------------------- /Chapter04/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/readme.md -------------------------------------------------------------------------------- /Chapter04/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter04/resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter04/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter04/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /Chapter04/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter04/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter04/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter04/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter04/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /Chapter04/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/routes/api.php -------------------------------------------------------------------------------- /Chapter04/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/routes/channels.php -------------------------------------------------------------------------------- /Chapter04/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/routes/console.php -------------------------------------------------------------------------------- /Chapter04/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/routes/web.php -------------------------------------------------------------------------------- /Chapter04/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter04/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/server.php -------------------------------------------------------------------------------- /Chapter04/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter04/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter04/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter04/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter04/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter04/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter04/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter04/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/webpack.mix.js -------------------------------------------------------------------------------- /Chapter04/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter04/yarn.lock -------------------------------------------------------------------------------- /Chapter05/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/.env.example -------------------------------------------------------------------------------- /Chapter05/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/.gitattributes -------------------------------------------------------------------------------- /Chapter05/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/.gitignore -------------------------------------------------------------------------------- /Chapter05/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/LICENSE -------------------------------------------------------------------------------- /Chapter05/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter05/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter05/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Chapter05/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter05/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Chapter05/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /Chapter05/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Listing.php -------------------------------------------------------------------------------- /Chapter05/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Chapter05/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/app/User.php -------------------------------------------------------------------------------- /Chapter05/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/artisan -------------------------------------------------------------------------------- /Chapter05/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter05/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter05/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/composer.json -------------------------------------------------------------------------------- /Chapter05/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/composer.lock -------------------------------------------------------------------------------- /Chapter05/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/app.php -------------------------------------------------------------------------------- /Chapter05/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/auth.php -------------------------------------------------------------------------------- /Chapter05/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter05/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/cache.php -------------------------------------------------------------------------------- /Chapter05/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/database.php -------------------------------------------------------------------------------- /Chapter05/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/filesystems.php -------------------------------------------------------------------------------- /Chapter05/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/mail.php -------------------------------------------------------------------------------- /Chapter05/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/queue.php -------------------------------------------------------------------------------- /Chapter05/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/services.php -------------------------------------------------------------------------------- /Chapter05/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/session.php -------------------------------------------------------------------------------- /Chapter05/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/config/view.php -------------------------------------------------------------------------------- /Chapter05/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter05/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/database/data.json -------------------------------------------------------------------------------- /Chapter05/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /Chapter05/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter05/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter05/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/package.json -------------------------------------------------------------------------------- /Chapter05/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/phpunit.xml -------------------------------------------------------------------------------- /Chapter05/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/public/.htaccess -------------------------------------------------------------------------------- /Chapter05/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/public/index.php -------------------------------------------------------------------------------- /Chapter05/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter05/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/public/web.config -------------------------------------------------------------------------------- /Chapter05/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/readme.md -------------------------------------------------------------------------------- /Chapter05/resources/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/assets/css/style.css -------------------------------------------------------------------------------- /Chapter05/resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/assets/images/logo.png -------------------------------------------------------------------------------- /Chapter05/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter05/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter05/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter05/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter05/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter05/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter05/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/resources/views/app.blade.php -------------------------------------------------------------------------------- /Chapter05/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/routes/api.php -------------------------------------------------------------------------------- /Chapter05/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/routes/channels.php -------------------------------------------------------------------------------- /Chapter05/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/routes/console.php -------------------------------------------------------------------------------- /Chapter05/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/routes/web.php -------------------------------------------------------------------------------- /Chapter05/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter05/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/server.php -------------------------------------------------------------------------------- /Chapter05/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter05/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter05/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter05/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter05/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter05/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter05/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter05/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/webpack.mix.js -------------------------------------------------------------------------------- /Chapter05/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter05/yarn.lock -------------------------------------------------------------------------------- /Chapter06/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/.env.example -------------------------------------------------------------------------------- /Chapter06/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/.gitattributes -------------------------------------------------------------------------------- /Chapter06/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/.gitignore -------------------------------------------------------------------------------- /Chapter06/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/LICENSE -------------------------------------------------------------------------------- /Chapter06/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter06/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter06/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Chapter06/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter06/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Chapter06/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /Chapter06/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Listing.php -------------------------------------------------------------------------------- /Chapter06/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Chapter06/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/app/User.php -------------------------------------------------------------------------------- /Chapter06/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/artisan -------------------------------------------------------------------------------- /Chapter06/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter06/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter06/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/composer.json -------------------------------------------------------------------------------- /Chapter06/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/composer.lock -------------------------------------------------------------------------------- /Chapter06/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/app.php -------------------------------------------------------------------------------- /Chapter06/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/auth.php -------------------------------------------------------------------------------- /Chapter06/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter06/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/cache.php -------------------------------------------------------------------------------- /Chapter06/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/database.php -------------------------------------------------------------------------------- /Chapter06/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/filesystems.php -------------------------------------------------------------------------------- /Chapter06/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/mail.php -------------------------------------------------------------------------------- /Chapter06/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/queue.php -------------------------------------------------------------------------------- /Chapter06/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/services.php -------------------------------------------------------------------------------- /Chapter06/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/session.php -------------------------------------------------------------------------------- /Chapter06/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/config/view.php -------------------------------------------------------------------------------- /Chapter06/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter06/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/database/data.json -------------------------------------------------------------------------------- /Chapter06/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /Chapter06/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter06/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter06/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/package.json -------------------------------------------------------------------------------- /Chapter06/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/phpunit.xml -------------------------------------------------------------------------------- /Chapter06/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/public/.htaccess -------------------------------------------------------------------------------- /Chapter06/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/public/index.php -------------------------------------------------------------------------------- /Chapter06/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter06/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/public/web.config -------------------------------------------------------------------------------- /Chapter06/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/readme.md -------------------------------------------------------------------------------- /Chapter06/resources/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/assets/css/style.css -------------------------------------------------------------------------------- /Chapter06/resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/assets/images/logo.png -------------------------------------------------------------------------------- /Chapter06/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter06/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter06/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter06/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter06/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter06/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter06/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/resources/views/app.blade.php -------------------------------------------------------------------------------- /Chapter06/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/routes/api.php -------------------------------------------------------------------------------- /Chapter06/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/routes/channels.php -------------------------------------------------------------------------------- /Chapter06/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/routes/console.php -------------------------------------------------------------------------------- /Chapter06/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/routes/web.php -------------------------------------------------------------------------------- /Chapter06/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter06/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/server.php -------------------------------------------------------------------------------- /Chapter06/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter06/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter06/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter06/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter06/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter06/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter06/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter06/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/webpack.mix.js -------------------------------------------------------------------------------- /Chapter06/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter06/yarn.lock -------------------------------------------------------------------------------- /Chapter07/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/.env.example -------------------------------------------------------------------------------- /Chapter07/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/.gitattributes -------------------------------------------------------------------------------- /Chapter07/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/.gitignore -------------------------------------------------------------------------------- /Chapter07/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/LICENSE -------------------------------------------------------------------------------- /Chapter07/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter07/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter07/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Chapter07/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter07/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Chapter07/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /Chapter07/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Listing.php -------------------------------------------------------------------------------- /Chapter07/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Chapter07/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/app/User.php -------------------------------------------------------------------------------- /Chapter07/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/artisan -------------------------------------------------------------------------------- /Chapter07/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter07/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter07/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/composer.json -------------------------------------------------------------------------------- /Chapter07/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/composer.lock -------------------------------------------------------------------------------- /Chapter07/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/app.php -------------------------------------------------------------------------------- /Chapter07/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/auth.php -------------------------------------------------------------------------------- /Chapter07/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter07/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/cache.php -------------------------------------------------------------------------------- /Chapter07/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/database.php -------------------------------------------------------------------------------- /Chapter07/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/filesystems.php -------------------------------------------------------------------------------- /Chapter07/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/mail.php -------------------------------------------------------------------------------- /Chapter07/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/queue.php -------------------------------------------------------------------------------- /Chapter07/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/services.php -------------------------------------------------------------------------------- /Chapter07/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/session.php -------------------------------------------------------------------------------- /Chapter07/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/config/view.php -------------------------------------------------------------------------------- /Chapter07/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter07/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/database/data.json -------------------------------------------------------------------------------- /Chapter07/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /Chapter07/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter07/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter07/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/package.json -------------------------------------------------------------------------------- /Chapter07/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/phpunit.xml -------------------------------------------------------------------------------- /Chapter07/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/public/.htaccess -------------------------------------------------------------------------------- /Chapter07/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter07/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/public/index.php -------------------------------------------------------------------------------- /Chapter07/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter07/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/public/web.config -------------------------------------------------------------------------------- /Chapter07/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/readme.md -------------------------------------------------------------------------------- /Chapter07/resources/assets/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/components/App.vue -------------------------------------------------------------------------------- /Chapter07/resources/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/css/style.css -------------------------------------------------------------------------------- /Chapter07/resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/images/logo.png -------------------------------------------------------------------------------- /Chapter07/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter07/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter07/resources/assets/js/route-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/js/route-mixin.js -------------------------------------------------------------------------------- /Chapter07/resources/assets/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/assets/js/router.js -------------------------------------------------------------------------------- /Chapter07/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter07/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter07/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter07/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter07/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/resources/views/app.blade.php -------------------------------------------------------------------------------- /Chapter07/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/routes/api.php -------------------------------------------------------------------------------- /Chapter07/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/routes/channels.php -------------------------------------------------------------------------------- /Chapter07/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/routes/console.php -------------------------------------------------------------------------------- /Chapter07/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/routes/web.php -------------------------------------------------------------------------------- /Chapter07/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter07/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/server.php -------------------------------------------------------------------------------- /Chapter07/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter07/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter07/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter07/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter07/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter07/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter07/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter07/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/webpack.mix.js -------------------------------------------------------------------------------- /Chapter07/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter07/yarn.lock -------------------------------------------------------------------------------- /Chapter08/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/.env.example -------------------------------------------------------------------------------- /Chapter08/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/.gitattributes -------------------------------------------------------------------------------- /Chapter08/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/.gitignore -------------------------------------------------------------------------------- /Chapter08/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/LICENSE -------------------------------------------------------------------------------- /Chapter08/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter08/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter08/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /Chapter08/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter08/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /Chapter08/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/Listing.php -------------------------------------------------------------------------------- /Chapter08/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/app/User.php -------------------------------------------------------------------------------- /Chapter08/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/artisan -------------------------------------------------------------------------------- /Chapter08/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter08/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter08/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/composer.json -------------------------------------------------------------------------------- /Chapter08/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/composer.lock -------------------------------------------------------------------------------- /Chapter08/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/app.php -------------------------------------------------------------------------------- /Chapter08/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/auth.php -------------------------------------------------------------------------------- /Chapter08/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter08/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/cache.php -------------------------------------------------------------------------------- /Chapter08/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/database.php -------------------------------------------------------------------------------- /Chapter08/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/filesystems.php -------------------------------------------------------------------------------- /Chapter08/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/mail.php -------------------------------------------------------------------------------- /Chapter08/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/queue.php -------------------------------------------------------------------------------- /Chapter08/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/services.php -------------------------------------------------------------------------------- /Chapter08/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/session.php -------------------------------------------------------------------------------- /Chapter08/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/config/view.php -------------------------------------------------------------------------------- /Chapter08/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter08/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/database/data.json -------------------------------------------------------------------------------- /Chapter08/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter08/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter08/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/package.json -------------------------------------------------------------------------------- /Chapter08/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/phpunit.xml -------------------------------------------------------------------------------- /Chapter08/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/public/.htaccess -------------------------------------------------------------------------------- /Chapter08/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/public/index.php -------------------------------------------------------------------------------- /Chapter08/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter08/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/public/web.config -------------------------------------------------------------------------------- /Chapter08/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/readme.md -------------------------------------------------------------------------------- /Chapter08/resources/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/assets/css/style.css -------------------------------------------------------------------------------- /Chapter08/resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/assets/images/logo.png -------------------------------------------------------------------------------- /Chapter08/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter08/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter08/resources/assets/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/assets/js/router.js -------------------------------------------------------------------------------- /Chapter08/resources/assets/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/assets/js/store.js -------------------------------------------------------------------------------- /Chapter08/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter08/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter08/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter08/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter08/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/resources/views/app.blade.php -------------------------------------------------------------------------------- /Chapter08/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/routes/api.php -------------------------------------------------------------------------------- /Chapter08/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/routes/channels.php -------------------------------------------------------------------------------- /Chapter08/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/routes/console.php -------------------------------------------------------------------------------- /Chapter08/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/routes/web.php -------------------------------------------------------------------------------- /Chapter08/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter08/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/server.php -------------------------------------------------------------------------------- /Chapter08/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter08/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter08/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter08/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter08/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter08/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter08/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter08/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/webpack.mix.js -------------------------------------------------------------------------------- /Chapter08/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter08/yarn.lock -------------------------------------------------------------------------------- /Chapter09/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/.env.example -------------------------------------------------------------------------------- /Chapter09/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/.gitattributes -------------------------------------------------------------------------------- /Chapter09/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/.gitignore -------------------------------------------------------------------------------- /Chapter09/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/LICENSE -------------------------------------------------------------------------------- /Chapter09/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter09/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter09/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter09/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/app/Listing.php -------------------------------------------------------------------------------- /Chapter09/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/app/User.php -------------------------------------------------------------------------------- /Chapter09/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/artisan -------------------------------------------------------------------------------- /Chapter09/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter09/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter09/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/composer.json -------------------------------------------------------------------------------- /Chapter09/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/composer.lock -------------------------------------------------------------------------------- /Chapter09/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/app.php -------------------------------------------------------------------------------- /Chapter09/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/auth.php -------------------------------------------------------------------------------- /Chapter09/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter09/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/cache.php -------------------------------------------------------------------------------- /Chapter09/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/database.php -------------------------------------------------------------------------------- /Chapter09/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/filesystems.php -------------------------------------------------------------------------------- /Chapter09/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/mail.php -------------------------------------------------------------------------------- /Chapter09/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/queue.php -------------------------------------------------------------------------------- /Chapter09/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/services.php -------------------------------------------------------------------------------- /Chapter09/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/session.php -------------------------------------------------------------------------------- /Chapter09/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/config/view.php -------------------------------------------------------------------------------- /Chapter09/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter09/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/database/data.json -------------------------------------------------------------------------------- /Chapter09/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter09/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter09/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/package.json -------------------------------------------------------------------------------- /Chapter09/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/phpunit.xml -------------------------------------------------------------------------------- /Chapter09/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/public/.htaccess -------------------------------------------------------------------------------- /Chapter09/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/public/index.php -------------------------------------------------------------------------------- /Chapter09/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter09/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/public/web.config -------------------------------------------------------------------------------- /Chapter09/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/readme.md -------------------------------------------------------------------------------- /Chapter09/resources/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/assets/css/style.css -------------------------------------------------------------------------------- /Chapter09/resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/assets/images/logo.png -------------------------------------------------------------------------------- /Chapter09/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter09/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter09/resources/assets/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/assets/js/router.js -------------------------------------------------------------------------------- /Chapter09/resources/assets/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/assets/js/store.js -------------------------------------------------------------------------------- /Chapter09/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter09/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter09/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter09/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter09/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/resources/views/app.blade.php -------------------------------------------------------------------------------- /Chapter09/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/routes/api.php -------------------------------------------------------------------------------- /Chapter09/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/routes/channels.php -------------------------------------------------------------------------------- /Chapter09/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/routes/console.php -------------------------------------------------------------------------------- /Chapter09/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/routes/web.php -------------------------------------------------------------------------------- /Chapter09/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter09/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/server.php -------------------------------------------------------------------------------- /Chapter09/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter09/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter09/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter09/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter09/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter09/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter09/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter09/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/webpack.mix.js -------------------------------------------------------------------------------- /Chapter09/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter09/yarn.lock -------------------------------------------------------------------------------- /Chapter10/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/.env.example -------------------------------------------------------------------------------- /Chapter10/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/.gitattributes -------------------------------------------------------------------------------- /Chapter10/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/.gitignore -------------------------------------------------------------------------------- /Chapter10/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/LICENSE -------------------------------------------------------------------------------- /Chapter10/Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /Chapter10/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/app/Console/Kernel.php -------------------------------------------------------------------------------- /Chapter10/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /Chapter10/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/app/Http/Kernel.php -------------------------------------------------------------------------------- /Chapter10/app/Listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/app/Listing.php -------------------------------------------------------------------------------- /Chapter10/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/app/User.php -------------------------------------------------------------------------------- /Chapter10/app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/app/helpers.php -------------------------------------------------------------------------------- /Chapter10/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/artisan -------------------------------------------------------------------------------- /Chapter10/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/bootstrap/app.php -------------------------------------------------------------------------------- /Chapter10/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/bootstrap/autoload.php -------------------------------------------------------------------------------- /Chapter10/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/composer.json -------------------------------------------------------------------------------- /Chapter10/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/composer.lock -------------------------------------------------------------------------------- /Chapter10/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/app.php -------------------------------------------------------------------------------- /Chapter10/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/auth.php -------------------------------------------------------------------------------- /Chapter10/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/broadcasting.php -------------------------------------------------------------------------------- /Chapter10/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/cache.php -------------------------------------------------------------------------------- /Chapter10/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/database.php -------------------------------------------------------------------------------- /Chapter10/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/filesystems.php -------------------------------------------------------------------------------- /Chapter10/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/mail.php -------------------------------------------------------------------------------- /Chapter10/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/queue.php -------------------------------------------------------------------------------- /Chapter10/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/services.php -------------------------------------------------------------------------------- /Chapter10/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/session.php -------------------------------------------------------------------------------- /Chapter10/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/config/view.php -------------------------------------------------------------------------------- /Chapter10/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /Chapter10/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/database/data.json -------------------------------------------------------------------------------- /Chapter10/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/database/factories/UserFactory.php -------------------------------------------------------------------------------- /Chapter10/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /Chapter10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/package.json -------------------------------------------------------------------------------- /Chapter10/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/phpunit.xml -------------------------------------------------------------------------------- /Chapter10/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/public/.htaccess -------------------------------------------------------------------------------- /Chapter10/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/public/index.php -------------------------------------------------------------------------------- /Chapter10/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /Chapter10/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/public/web.config -------------------------------------------------------------------------------- /Chapter10/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/readme.md -------------------------------------------------------------------------------- /Chapter10/resources/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/assets/css/style.css -------------------------------------------------------------------------------- /Chapter10/resources/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/assets/images/logo.png -------------------------------------------------------------------------------- /Chapter10/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/assets/js/app.js -------------------------------------------------------------------------------- /Chapter10/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /Chapter10/resources/assets/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/assets/js/router.js -------------------------------------------------------------------------------- /Chapter10/resources/assets/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/assets/js/store.js -------------------------------------------------------------------------------- /Chapter10/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/lang/en/auth.php -------------------------------------------------------------------------------- /Chapter10/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /Chapter10/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /Chapter10/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/lang/en/validation.php -------------------------------------------------------------------------------- /Chapter10/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/resources/views/app.blade.php -------------------------------------------------------------------------------- /Chapter10/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/routes/api.php -------------------------------------------------------------------------------- /Chapter10/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/routes/channels.php -------------------------------------------------------------------------------- /Chapter10/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/routes/console.php -------------------------------------------------------------------------------- /Chapter10/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/routes/web.php -------------------------------------------------------------------------------- /Chapter10/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/scripts/ftp.js -------------------------------------------------------------------------------- /Chapter10/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/server.php -------------------------------------------------------------------------------- /Chapter10/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /Chapter10/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/storage/framework/.gitignore -------------------------------------------------------------------------------- /Chapter10/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Chapter10/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/tests/CreatesApplication.php -------------------------------------------------------------------------------- /Chapter10/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /Chapter10/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/tests/TestCase.php -------------------------------------------------------------------------------- /Chapter10/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /Chapter10/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/webpack.mix.js -------------------------------------------------------------------------------- /Chapter10/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/Chapter10/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/README.md -------------------------------------------------------------------------------- /images/1/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/1/Image_1.jpg -------------------------------------------------------------------------------- /images/1/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/1/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/1/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/1/Image_2.jpg -------------------------------------------------------------------------------- /images/1/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/1/Image_3.jpg -------------------------------------------------------------------------------- /images/1/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/1/Image_4.jpg -------------------------------------------------------------------------------- /images/10/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/10/Image_1.jpg -------------------------------------------------------------------------------- /images/10/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/10/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/10/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/10/Image_2.jpg -------------------------------------------------------------------------------- /images/10/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/10/Image_3.jpg -------------------------------------------------------------------------------- /images/10/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/10/Image_4.jpg -------------------------------------------------------------------------------- /images/11/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/11/Image_1.jpg -------------------------------------------------------------------------------- /images/11/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/11/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/11/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/11/Image_2.jpg -------------------------------------------------------------------------------- /images/11/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/11/Image_3.jpg -------------------------------------------------------------------------------- /images/11/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/11/Image_4.jpg -------------------------------------------------------------------------------- /images/12/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/12/Image_1.jpg -------------------------------------------------------------------------------- /images/12/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/12/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/12/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/12/Image_2.jpg -------------------------------------------------------------------------------- /images/12/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/12/Image_3.jpg -------------------------------------------------------------------------------- /images/12/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/12/Image_4.jpg -------------------------------------------------------------------------------- /images/13/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/13/Image_1.jpg -------------------------------------------------------------------------------- /images/13/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/13/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/13/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/13/Image_2.jpg -------------------------------------------------------------------------------- /images/13/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/13/Image_3.jpg -------------------------------------------------------------------------------- /images/13/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/13/Image_4.jpg -------------------------------------------------------------------------------- /images/14/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/14/Image_1.jpg -------------------------------------------------------------------------------- /images/14/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/14/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/14/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/14/Image_2.jpg -------------------------------------------------------------------------------- /images/14/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/14/Image_3.jpg -------------------------------------------------------------------------------- /images/14/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/14/Image_4.jpg -------------------------------------------------------------------------------- /images/15/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/15/Image_1.jpg -------------------------------------------------------------------------------- /images/15/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/15/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/15/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/15/Image_2.jpg -------------------------------------------------------------------------------- /images/15/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/15/Image_3.jpg -------------------------------------------------------------------------------- /images/15/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/15/Image_4.jpg -------------------------------------------------------------------------------- /images/16/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/16/Image_1.jpg -------------------------------------------------------------------------------- /images/16/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/16/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/16/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/16/Image_2.jpg -------------------------------------------------------------------------------- /images/16/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/16/Image_3.jpg -------------------------------------------------------------------------------- /images/16/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/16/Image_4.jpg -------------------------------------------------------------------------------- /images/17/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/17/Image_1.jpg -------------------------------------------------------------------------------- /images/17/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/17/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/17/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/17/Image_2.jpg -------------------------------------------------------------------------------- /images/17/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/17/Image_3.jpg -------------------------------------------------------------------------------- /images/17/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/17/Image_4.jpg -------------------------------------------------------------------------------- /images/18/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/18/Image_1.jpg -------------------------------------------------------------------------------- /images/18/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/18/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/18/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/18/Image_2.jpg -------------------------------------------------------------------------------- /images/18/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/18/Image_3.jpg -------------------------------------------------------------------------------- /images/18/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/18/Image_4.jpg -------------------------------------------------------------------------------- /images/19/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/19/Image_1.jpg -------------------------------------------------------------------------------- /images/19/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/19/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/19/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/19/Image_2.jpg -------------------------------------------------------------------------------- /images/19/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/19/Image_3.jpg -------------------------------------------------------------------------------- /images/19/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/19/Image_4.jpg -------------------------------------------------------------------------------- /images/2/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/2/Image_1.jpg -------------------------------------------------------------------------------- /images/2/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/2/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/2/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/2/Image_2.jpg -------------------------------------------------------------------------------- /images/2/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/2/Image_3.jpg -------------------------------------------------------------------------------- /images/2/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/2/Image_4.jpg -------------------------------------------------------------------------------- /images/20/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/20/Image_1.jpg -------------------------------------------------------------------------------- /images/20/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/20/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/20/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/20/Image_2.jpg -------------------------------------------------------------------------------- /images/20/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/20/Image_3.jpg -------------------------------------------------------------------------------- /images/20/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/20/Image_4.jpg -------------------------------------------------------------------------------- /images/21/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/21/Image_1.jpg -------------------------------------------------------------------------------- /images/21/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/21/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/21/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/21/Image_2.jpg -------------------------------------------------------------------------------- /images/21/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/21/Image_3.jpg -------------------------------------------------------------------------------- /images/21/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/21/Image_4.jpg -------------------------------------------------------------------------------- /images/22/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/22/Image_1.jpg -------------------------------------------------------------------------------- /images/22/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/22/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/22/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/22/Image_2.jpg -------------------------------------------------------------------------------- /images/22/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/22/Image_3.jpg -------------------------------------------------------------------------------- /images/22/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/22/Image_4.jpg -------------------------------------------------------------------------------- /images/23/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/23/Image_1.jpg -------------------------------------------------------------------------------- /images/23/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/23/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/23/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/23/Image_2.jpg -------------------------------------------------------------------------------- /images/23/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/23/Image_3.jpg -------------------------------------------------------------------------------- /images/23/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/23/Image_4.jpg -------------------------------------------------------------------------------- /images/24/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/24/Image_1.jpg -------------------------------------------------------------------------------- /images/24/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/24/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/24/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/24/Image_2.jpg -------------------------------------------------------------------------------- /images/24/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/24/Image_3.jpg -------------------------------------------------------------------------------- /images/24/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/24/Image_4.jpg -------------------------------------------------------------------------------- /images/25/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/25/Image_1.jpg -------------------------------------------------------------------------------- /images/25/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/25/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/25/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/25/Image_2.jpg -------------------------------------------------------------------------------- /images/25/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/25/Image_3.jpg -------------------------------------------------------------------------------- /images/25/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/25/Image_4.jpg -------------------------------------------------------------------------------- /images/26/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/26/Image_1.jpg -------------------------------------------------------------------------------- /images/26/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/26/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/26/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/26/Image_2.jpg -------------------------------------------------------------------------------- /images/26/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/26/Image_3.jpg -------------------------------------------------------------------------------- /images/26/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/26/Image_4.jpg -------------------------------------------------------------------------------- /images/27/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/27/Image_1.jpg -------------------------------------------------------------------------------- /images/27/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/27/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/27/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/27/Image_2.jpg -------------------------------------------------------------------------------- /images/27/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/27/Image_3.jpg -------------------------------------------------------------------------------- /images/27/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/27/Image_4.jpg -------------------------------------------------------------------------------- /images/28/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/28/Image_1.jpg -------------------------------------------------------------------------------- /images/28/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/28/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/28/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/28/Image_2.jpg -------------------------------------------------------------------------------- /images/28/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/28/Image_3.jpg -------------------------------------------------------------------------------- /images/28/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/28/Image_4.jpg -------------------------------------------------------------------------------- /images/29/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/29/Image_1.jpg -------------------------------------------------------------------------------- /images/29/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/29/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/29/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/29/Image_2.jpg -------------------------------------------------------------------------------- /images/29/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/29/Image_3.jpg -------------------------------------------------------------------------------- /images/29/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/29/Image_4.jpg -------------------------------------------------------------------------------- /images/3/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/3/Image_1.jpg -------------------------------------------------------------------------------- /images/3/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/3/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/3/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/3/Image_2.jpg -------------------------------------------------------------------------------- /images/3/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/3/Image_3.jpg -------------------------------------------------------------------------------- /images/3/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/3/Image_4.jpg -------------------------------------------------------------------------------- /images/30/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/30/Image_1.jpg -------------------------------------------------------------------------------- /images/30/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/30/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/30/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/30/Image_2.jpg -------------------------------------------------------------------------------- /images/30/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/30/Image_3.jpg -------------------------------------------------------------------------------- /images/30/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/30/Image_4.jpg -------------------------------------------------------------------------------- /images/4/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/4/Image_1.jpg -------------------------------------------------------------------------------- /images/4/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/4/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/4/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/4/Image_2.jpg -------------------------------------------------------------------------------- /images/4/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/4/Image_3.jpg -------------------------------------------------------------------------------- /images/4/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/4/Image_4.jpg -------------------------------------------------------------------------------- /images/5/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/5/Image_1.jpg -------------------------------------------------------------------------------- /images/5/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/5/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/5/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/5/Image_2.jpg -------------------------------------------------------------------------------- /images/5/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/5/Image_3.jpg -------------------------------------------------------------------------------- /images/5/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/5/Image_4.jpg -------------------------------------------------------------------------------- /images/6/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/6/Image_1.jpg -------------------------------------------------------------------------------- /images/6/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/6/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/6/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/6/Image_2.jpg -------------------------------------------------------------------------------- /images/6/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/6/Image_3.jpg -------------------------------------------------------------------------------- /images/6/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/6/Image_4.jpg -------------------------------------------------------------------------------- /images/7/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/7/Image_1.jpg -------------------------------------------------------------------------------- /images/7/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/7/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/7/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/7/Image_2.jpg -------------------------------------------------------------------------------- /images/7/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/7/Image_3.jpg -------------------------------------------------------------------------------- /images/7/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/7/Image_4.jpg -------------------------------------------------------------------------------- /images/8/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/8/Image_1.jpg -------------------------------------------------------------------------------- /images/8/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/8/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/8/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/8/Image_2.jpg -------------------------------------------------------------------------------- /images/8/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/8/Image_3.jpg -------------------------------------------------------------------------------- /images/8/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/8/Image_4.jpg -------------------------------------------------------------------------------- /images/9/Image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/9/Image_1.jpg -------------------------------------------------------------------------------- /images/9/Image_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/9/Image_1_thumb.jpg -------------------------------------------------------------------------------- /images/9/Image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/9/Image_2.jpg -------------------------------------------------------------------------------- /images/9/Image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/9/Image_3.jpg -------------------------------------------------------------------------------- /images/9/Image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/images/9/Image_4.jpg -------------------------------------------------------------------------------- /vuebnb-prototype/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules 3 | 4 | -------------------------------------------------------------------------------- /vuebnb-prototype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/README.md -------------------------------------------------------------------------------- /vuebnb-prototype/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuebnb-prototype/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/favicon.ico -------------------------------------------------------------------------------- /vuebnb-prototype/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/index.html -------------------------------------------------------------------------------- /vuebnb-prototype/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/logo.png -------------------------------------------------------------------------------- /vuebnb-prototype/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/package.json -------------------------------------------------------------------------------- /vuebnb-prototype/sample/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/sample/data.js -------------------------------------------------------------------------------- /vuebnb-prototype/sample/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/sample/header.jpg -------------------------------------------------------------------------------- /vuebnb-prototype/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb-prototype/style.css -------------------------------------------------------------------------------- /vuebnb/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/.env.example -------------------------------------------------------------------------------- /vuebnb/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/.gitattributes -------------------------------------------------------------------------------- /vuebnb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/.gitignore -------------------------------------------------------------------------------- /vuebnb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/LICENSE -------------------------------------------------------------------------------- /vuebnb/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Console/Kernel.php -------------------------------------------------------------------------------- /vuebnb/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /vuebnb/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /vuebnb/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Http/Kernel.php -------------------------------------------------------------------------------- /vuebnb/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /vuebnb/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /vuebnb/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /vuebnb/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /vuebnb/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/app/User.php -------------------------------------------------------------------------------- /vuebnb/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/artisan -------------------------------------------------------------------------------- /vuebnb/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/bootstrap/app.php -------------------------------------------------------------------------------- /vuebnb/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/bootstrap/autoload.php -------------------------------------------------------------------------------- /vuebnb/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/composer.json -------------------------------------------------------------------------------- /vuebnb/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/composer.lock -------------------------------------------------------------------------------- /vuebnb/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/app.php -------------------------------------------------------------------------------- /vuebnb/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/auth.php -------------------------------------------------------------------------------- /vuebnb/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/broadcasting.php -------------------------------------------------------------------------------- /vuebnb/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/cache.php -------------------------------------------------------------------------------- /vuebnb/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/database.php -------------------------------------------------------------------------------- /vuebnb/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/filesystems.php -------------------------------------------------------------------------------- /vuebnb/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/mail.php -------------------------------------------------------------------------------- /vuebnb/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/queue.php -------------------------------------------------------------------------------- /vuebnb/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/services.php -------------------------------------------------------------------------------- /vuebnb/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/session.php -------------------------------------------------------------------------------- /vuebnb/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/config/view.php -------------------------------------------------------------------------------- /vuebnb/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /vuebnb/database/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/database/data.json -------------------------------------------------------------------------------- /vuebnb/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /vuebnb/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/database/factories/UserFactory.php -------------------------------------------------------------------------------- /vuebnb/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /vuebnb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/package.json -------------------------------------------------------------------------------- /vuebnb/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/phpunit.xml -------------------------------------------------------------------------------- /vuebnb/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/public/.htaccess -------------------------------------------------------------------------------- /vuebnb/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vuebnb/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/public/index.php -------------------------------------------------------------------------------- /vuebnb/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /vuebnb/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/public/web.config -------------------------------------------------------------------------------- /vuebnb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/readme.md -------------------------------------------------------------------------------- /vuebnb/resources/assets/images/logo_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/assets/images/logo_grey.png -------------------------------------------------------------------------------- /vuebnb/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/assets/js/app.js -------------------------------------------------------------------------------- /vuebnb/resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /vuebnb/resources/assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/assets/js/helpers.js -------------------------------------------------------------------------------- /vuebnb/resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /vuebnb/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /vuebnb/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/lang/en/auth.php -------------------------------------------------------------------------------- /vuebnb/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /vuebnb/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /vuebnb/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/lang/en/validation.php -------------------------------------------------------------------------------- /vuebnb/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /vuebnb/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/routes/api.php -------------------------------------------------------------------------------- /vuebnb/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/routes/channels.php -------------------------------------------------------------------------------- /vuebnb/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/routes/console.php -------------------------------------------------------------------------------- /vuebnb/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/routes/web.php -------------------------------------------------------------------------------- /vuebnb/scripts/ftp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/scripts/ftp.js -------------------------------------------------------------------------------- /vuebnb/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/server.php -------------------------------------------------------------------------------- /vuebnb/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /vuebnb/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/storage/framework/.gitignore -------------------------------------------------------------------------------- /vuebnb/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vuebnb/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/tests/CreatesApplication.php -------------------------------------------------------------------------------- /vuebnb/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /vuebnb/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/tests/TestCase.php -------------------------------------------------------------------------------- /vuebnb/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vuebnb/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/webpack.mix.js -------------------------------------------------------------------------------- /vuebnb/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Full-Stack-Vue.js-2-and-Laravel-5/HEAD/vuebnb/yarn.lock --------------------------------------------------------------------------------