Laravel

How to resolve esm-bundler build warning when running vue 3 and laravel 8

When running npm run watch below warning is displayed: Warning details: You can add below code in webpack.mix.js to the get rid of this warning Used Define Plugin to set two flags – https://webpack.js.org/plugins/define-plugin/ VUE_OPTIONS_API (enable/disable Options API support, default: true)VUE_PROD_DEVTOOLS (enable/disable devtools support in production, default: false)

How to resolve esm-bundler build warning when running vue 3 and laravel 8 Read More »

Movie search application using Vue JS and Laravel framework using OMDb API – The Open Movie Database

A laravel movie search application using Vue JS, Vue Composition API and OMDBAI API. OMDBAI is used to fetch the movies data from https://www.omdbapi.com/ Requirements Installation You will need to gety API key from the OMDb API and update in /resources/js/components/movieapi/movie-api.js file Once you are done with the above steps, now its time to start building the movie

Movie search application using Vue JS and Laravel framework using OMDb API – The Open Movie Database Read More »

How to install laravel dusk to do browser testing for your application?

Laravel Dusk provides an easy-to-use browser automation using chromedriver installation. Install composer dependency for your application Now execute below artisan command Set the APP_URL env variable in the .env file. This value should match the URL you use to access your application in a browser. Create a test Run test This will run the test

How to install laravel dusk to do browser testing for your application? Read More »