All Questions
595 questions
0
votes
1
answer
706
views
Why some part of my vue file doesn't work with iOS >16.4?
I have a website that works fine on browsers, last Android version but not on the last iOS version (>16.4). I have to precise that it works fine on iOS 16.3.
I know that iOS 16.4 meets a lots of ...
3
votes
2
answers
2k
views
DisabledForUser Please make sure that the app id is set correctly when running npm run dev?
I'm getting this message when I run npm run dev
DisabledForUser Please make sure that the app id is set correctly.
I have imported javascript and css in the app.blade.php. Next, in the home.blade.php ...
0
votes
1
answer
321
views
Laravel - Vue js application not showing data properly
working with Vue js and Laravel REST API. database is mysql. but when try show ContactList it is not displaying here..
web.php
Route::prefix('api')->group(function() {
//get contact
Route::...
2
votes
0
answers
2k
views
Getting 429 (Too Many Request) in vue.js laravel
I'm using vue.js and laravel when i open edit page i get this error in my console but Update function is called on button click and bill url is also called multiple times without parameter on mounted ...
-1
votes
1
answer
558
views
Permission navigation in vuejs + laravel?
I have a campaign list page. Now I want when the user logs in, if he doesn't have access to the campaign list page, it won't show the menu and won't allow access to that url ? Give me ideas. Thanks
...
1
vote
1
answer
837
views
Edit default pagination in vuejs?
I handle vuejs + laravel
I Controller :
public function listData (Request $request)
{
$currentPage = !empty($request->currentPage) ? $request->currentPage : 1;
$pageSize = !empty($request-&...
-1
votes
1
answer
128
views
Create array in laravel passing vuejs?
$arrList = [];
foreach ($product as $val) {
$arrList[]['name'] = $val->name;
$arrList[]['quantity'] = $val->quantity;
}
return response()->json($arrList);
I am a PHP newbie, so I'm ...
0
votes
1
answer
701
views
Date format changing in vue.js
I'm using date picker :
<Datepicker :format="format" v-model="form.start" name="start"></Datepicker>
Its format is something like this :
data(){
...
1
vote
2
answers
2k
views
How to show Array of errors in Vue.js ? Backend Validation with Laravel
I have some complex data and I want to show the validation error array data in vue file but I can not do it because I have got some data that has an index and showing like contacts.0.name: ["....&...
0
votes
0
answers
383
views
How to Upload pdf, xls, xlsx, doc, docx in Laravel and Vue.js
My Code is below but it's not working. I can upload Image with base64 formate and successfully store on Laravel backend but I'm struggling to upload other file formates in Laravel and vue.js. Anyone ...
0
votes
2
answers
1k
views
How to pass multiple value with key to url using vue.js
I have this attributes data
for(var k = 0;k<this.form.fields.length;k++)
{
this.dynamic_fields.push({attribute_id:attributes[k].id,value: ...
0
votes
0
answers
195
views
Login not working in Laravel using vue.js
I'm trying to Login using Laravel and Vue.js its controller code is:
public function login(Request $request){
$validation = Validator::make($request->all(),[
'user_id' => ...
0
votes
2
answers
1k
views
Cannot display image in vue.js
I'm saving image in following path :
storage\app\public\img\user_image
and saving image url like this in database:
/img/user_image/285070719.png
trying to display image like this:
<img :src=&...
0
votes
0
answers
199
views
How to access folders outside root directory in laravel? to be fetched with Vue
I'm trying to build a project. This project is contained in 2 seperate folders. The back-end is using laravel and the front-end is using Vue. The problem is, I need to fetch photos with vue from the ...
1
vote
2
answers
2k
views
Display image in Vue from storage folder with laravel
I'm saving my images in following location
Storage/app/public/userImages
It is getting saved but when i retrieve it in my vue component it throws error 404 not found.
<img :src="`/storage/${...