NuxtJS auth redirect after logout to various paths, if needed
Did Google and read the documentation but no solution found yet, please suggest how to log out the user to different paths if needed.My scenario/issueIf a user is verified and logout, should be...
View ArticleAnswer by zarpio for Nuxt js - Fresh install of nuxt 2.14.6 contains babel...
package.json (When my packages were as under)"dependencies": {"@nuxtjs/axios": "^5.13.6","core-js": "^3.15.1","nuxt": "^2.15.7","vuetify": "^2.5.5"},"devDependencies": {"@nuxtjs/vuetify":...
View ArticleHow to configure laravel-vue-pagination for Nuxt js
installed vianpm i laravel-vue-paginationcreated a file under plugins folder as "laravel-vue-pagination.js"import Vue from 'vue'import LaravelVuePagination from...
View ArticleLaravel 5.6 chunk with groupBy
I am getting the error while executing below, while without groupBy it is working fine. User::select('col')->groupBy('col1')->chunk(100, function ($users) { foreach ($users as $user) {...
View Article1390 Prepared statement contains too many placeholders using Laravel 5.6
Getting following errorSQLSTATE[HY000]: General error: 1390 Prepared statement contains too many placeholdersMy query has become due to data in the table recentlySELECT *FROM tableWHERE col1 =...
View ArticleHow to integrate PayPal Smart Payment buttons in NuxtJs?
My current working solution.<template><div><div ref="paypal"></div> </div></template><script>export default { mounted: function () { const script =...
View ArticleAnswer by zarpio for getting _ctx.route is not a function
Install Ziggy into your Laravelcomposer require tightenco/ziggyGenerate resources/js/ziggy.js byphp artisan ziggy:generateUpdate webpack.mix.js fileconst path = require('path')mix.webpackConfig({...
View ArticleAnswer by zarpio for Define global component in InertiaJS with Vue 3
I was having 2 layouts for backend(admin-panel) and frontend(website), achieved as follows. Using inertia default middleware file.project/app/Http/Middleware/HandleInertiaRequests.phpclass...
View ArticleUnable to renew SSL certificate using apache2 at ubuntu (aws ec2) instance
The website was running fine with GoDaddy's SSL installed, it has been approx a month since SSL expired and I lost the CSR file we used for the SSL certificate first time.Steps I tried:Created new CSR...
View ArticleHow to pass "conditional" default value by checking its value in the Vue...
Componentprops: { image: { type: String, default() { return this.defaultImage } }},computed: { defaultImage() { return this.$config.baseUrl +'/images/default.jpg' }},Using the above component, when...
View ArticleHow to preserve-scroll with buttons using inertia js
Working<Link :href="route('products')" preserve-scroll>Products</Link>Not Working<form @submit.prevent="submit"> ...<button type="submit"...
View ArticleLaravel observer taking too long when updating
How to use Laravel observer to update specific fields.ItemController.phppublic function update(ItemRequest $request, Item $item){ abort_if(Gate::denies('item-update'), Response::HTTP_FORBIDDEN, '403...
View ArticleLaravel Dusk (TTY mode is not supported on Windows platform)
Steps to reproduce:Installed as written here https://laravel.com/docs/5.4/dusk#installation1) composer require --dev laravel/dusk:^1.02) app\Providers\AppServiceProvider.phpuse...
View ArticleAnswer by zarpio for How to change Laravel Validation message for max file...
In Laravel 8To generate a new validation rule.php artisan make:rule MaxSizeRuleEdit your rule as follows.<?phpnamespace App\Rules;use Illuminate\Contracts\Validation\Rule;class MaxSizeRule...
View ArticleHow to configure nuxt-i18n for static assets files?
Please note, I have some js files included as follows, from the root "static" directory.head: {script: [{ type: 'text/javascript', src: 'js/jquery.min.js', body: true }, { type: 'text/javascript', src:...
View ArticleAnswer by zarpio for How to deploy NuxtJs Application on Apache and access it...
After a long time, my question was alone, so I decided to give it a partner with my answer, part a joke I have found the solution, and the following is my finding. Please update it if you have the more...
View ArticleHow to deploy NuxtJs Application on Apache and access it with IP-URL instead...
Please note, this is my first nuxt-app trying to deploy on a staging server. We have a staging AWS server where many web applications are deployed as follows.http://0.0.0.0/app1/public...
View ArticleRegex start with a word till specific word/char/space
The string could be as following line by line every time.code=876 and town=87 and geocode in(1,2,3)code=876 and town=878 and geocode in(1,2,3)code=876 and town="878" and geocode in(1,2,3)code=876 and...
View ArticleAnswer by zarpio for Can I start atom from my ubuntu on windows terminal?
Another way is, to try the following commandsnap run atomIf the above command works for you, you can make an aliasalias atom='snap run atom'
View Article