Wich package is simple and best for laravel visits counter of website?

|
jakhongir_bakhodirov 2021-04-04 13:59:19
2021-04-04 13:57:57
Call ajax and in controller Product::find($id);

how I need that you just move mouse to product_id input field then all product id should be appeared

2021-04-04 14:04:58
jakhongir_bakhodirov 2021-04-04 13:59:19
how I need that you just move mouse to product_id input field then all product id should be appeared

Okay.. you can call ajax onmouseenter event then do what you want to do.

jakhongir_bakhodirov 2021-04-04 14:06:02
2021-04-04 14:04:58
Okay.. you can call ajax onmouseenter event then do what you want to do.

I have tried Ajax to do other functionality which editing inline and it did not work for me
data did not saved in database

2021-04-04 14:10:23
jakhongir_bakhodirov 2021-04-04 14:06:02
I have tried Ajax to do other functionality which editing inline and it did not work for me
data did not saved in database

Storing the data in database is another process.

jakhongir_bakhodirov 2021-04-04 14:10:49
2021-04-04 14:10:23
Storing the data in database is another process.

yeap I know but I could not store data

jakhongir_bakhodirov 2021-04-04 14:11:33
2021-04-04 14:10:23
Storing the data in database is another process.

function action(Request $request)
{
if($request->ajax())
{
if($request->action == ‘edit’)
{
$data = array(
‘name’ => $request->name,
‘count’ => $request->count,
‘summa’ => $request->summa,
‘description’ => $request->description,
‘updated_at’ => $request->updated_at,
);
DB::table(‘product’)
->where(‘id’, $request->id)
->update($data);
}
if($request->action == ‘delete’)
{
DB::table(‘product’)
->where(‘id’, $request->id)
->delete();
}
return response()->json($request);
}
}

I wrote this function to store data

juvenilia_xs 2021-04-04 14:14:04
Hi guys ,

the DataTable creates folder for each uploaded file.

can we do something to avoid this?

2021-04-04 14:16:24
jakhongir_bakhodirov 2021-04-04 14:11:33
function action(Request $request)
{
if($request->ajax())
{
if($request->action == ‘edit’)
{
$data = array(
‘name’ => $request->name,
‘count’ => $request->count,
‘summa’ => $request->summa,
‘description’ => $request->description,
‘updated_at’ => $request->updated_at,
);
DB::table(‘product’)
->where(‘id’, $request->id)
->update($data);
}
if($request->action == ‘delete’)
{
DB::table(‘product’)
->where(‘id’, $request->id)
->delete();
}
return response()->json($request);
}
}

I wrote this function to store data

First you get and after that you can update.

2021-04-04 14:20:30
Hope this will help you.
sadeqi125 2021-04-04 15:35:46
wich package is simple and best for laravel visits counter of website ?
Acird Burn 2021-04-04 15:45:57
Need an expirenced laravel php developer to help update a laravel website must be a full time freelancer and able to work full time project basic
Bhavyakumar Panchotiya 2021-04-04 16:26:38
laravel_discuss-75467.jpg
can anyone tell me how to fix it ?
isofdev 2021-04-04 16:33:37
Bhavyakumar Panchotiya 2021-04-04 16:26:38
can anyone tell me how to fix it ?

Download the last version of Microsoft visual c++.

2021-04-04 16:39:10
Hi
I want connet my VS code to server but i have problem
Error text = “timed out while waiting for handshake”

SFTP.json file
{
“name”: “My Server”,
“host”: “”,
“protocol”: “sftp”,
“port”: ,
“username”: “”,
“remotePath”: “/”,
“uploadOnSave”: true
}

sadeqi125 2021-04-04 16:47:43
laravel_discuss-75471.jpg
how can solve this error in laravel8?
Bhavyakumar Panchotiya 2021-04-04 16:53:17
sadeqi125 2021-04-04 16:47:43
how can solve this error in laravel8?

Just edit your php.ini and uncomment the lines extension=pdo_pgsql.so and extension=pgsql.so

sadeqi125 2021-04-04 17:02:16
Bhavyakumar Panchotiya 2021-04-04 16:53:17
Just edit your php.ini and uncomment the lines extension=pdo_pgsql.so and extension=pgsql.so

i change it but it have the error?

Bhavyakumar Panchotiya 2021-04-04 17:07:57
isofdev 2021-04-04 16:33:37
Download the last version of Microsoft visual c++.

now it is working …… Thanks Boss 🙂

Akhilbansal122 2021-04-04 17:56:01
Section is bast h ya components
Akhilbansal122 2021-04-04 17:56:14
Jada kya use krne chaiye
Vignesh K 2021-04-04 18:33:25
How to work with map in laravel? Itried with Google API it show Source map() error
YASH202020 2021-04-04 21:06:32
Hi

If Any One Have To Make Logo,Visiting Card Etc Then Dm Me

Batu157 2021-04-04 21:08:45
YASH202020 2021-04-04 21:06:32
Hi

If Any One Have To Make Logo,Visiting Card Etc Then Dm Me

I did

web_artisan77 2021-04-04 21:35:01
Do you guys know any tool for creating a NoSQL structure? Like drawsql.app but for NoSQL like firestore?
web_artisan77 2021-04-04 21:35:27
Do you guys know any tool for creating a NoSQL structure? Like drawsql(dot)app but for NoSQL like firestore?
IntelligentStranger 2021-04-04 22:52:52
okay
IntelligentStranger 2021-04-04 23:01:07
hey guys can i get smtp here?
IntelligentStranger 2021-04-04 23:01:28
or a domain list using laravel?
IntelligentStranger 2021-04-04 23:04:27
or can someone get me a laravel list?
amir_0787 2021-04-04 23:14:17
2021-04-04 16:39:10
Hi
I want connet my VS code to server but i have problem
Error text = “timed out while waiting for handshake”

SFTP.json file
{
“name”: “My Server”,
“host”: “”,
“protocol”: “sftp”,
“port”: ,
“username”: “”,
“remotePath”: “/”,
“uploadOnSave”: true
}

Put your domain URL in “host”: “url”
Port 21
Username: your VPS username
Remote path: /public_html if your project is on root

Ayushi2020 2021-04-05 00:18:24
laravel_discuss-75495.jpg

m_ahmoudreda 2021-04-05 00:49:11
how to working with View Composers
jakhongir_bakhodirov 2021-04-05 04:17:02
laravel_discuss-75497.jpg
Hi guys
Why this error caused when I want to save data into database
jakhongir_bakhodirov 2021-04-05 04:17:43
jakhongir_bakhodirov 2021-04-05 04:17:02
Hi guys
Why this error caused when I want to save data into database

laravel_discuss-75498.jpg
this line 3844 where error caused here

littlefish111 2021-04-05 04:43:05
jakhongir_bakhodirov 2021-04-05 04:17:02
Hi guys
Why this error caused when I want to save data into database

you getting 500 response

|