Anyone has made an apps that have concepts assignment form to many users?

|
skys215 2019-11-22 06:06:43
naveen5566 2019-11-21 18:08:23
Hi all,
How to Encrypt with PHP laravel, Decrypt with Javascript (cryptojs)
Please send me sample example code

Use same encrypt method

prabhjd 2019-11-22 07:32:29
laravel_discuss-18908.jpg

prabhjd 2019-11-22 07:32:38
laravel_discuss-18909.jpg

prabhjd 2019-11-22 07:32:56
How can I add data from my database to pie ?
prabhjd 2019-11-22 07:33:35
I want to show how much votes each party got
ManojKiranAppathurai 2019-11-22 07:34:13
prabhjd 2019-11-22 07:33:35
I want to show how much votes each party got

You can use consoletvs/charts package

prabhjd 2019-11-22 07:34:26
I don’t wanna use any package
ManojKiranAppathurai 2019-11-22 07:34:30
Get the data and pass to the class
prabhjd 2019-11-22 07:35:04
I am using chartjs
prabhjd 2019-11-22 07:35:13
Without any package
ManojKiranAppathurai 2019-11-22 07:35:38
prabhjd 2019-11-22 07:34:26
I don’t wanna use any package

Then you must get the data from db and convert to JSON and pass to chart parms

ManojKiranAppathurai 2019-11-22 07:36:06
https://t.me/joinchat/NRta8Bb6pikEy6Rp2UX-fw
rebory 2019-11-22 08:50:47
laravel_discuss-18919.jpg
when i update product using laravel 6.5.2
rebory 2019-11-22 08:54:25
laravel_discuss-18920.jpg
ajax form
rebory 2019-11-22 08:55:07
laravel_discuss-18921.jpg
my routes for update product
skys215 2019-11-22 08:55:40
show us your route file
rebory 2019-11-22 08:56:04
laravel_discuss-18923.jpg
this is my blade form
rebory 2019-11-22 08:56:24
skys215 2019-11-22 08:55:40
show us your route file

https://t.me/c/1333092984/18921

skys215 2019-11-22 08:59:47
rebory 2019-11-22 08:50:47
when i update product using laravel 6.5.2

and what’s the url which you are trying to post? I can’t see here

rebory 2019-11-22 09:01:09
laravel_discuss-18927.jpg
product update route
rebory 2019-11-22 09:02:18
https://t.me/c/1333092984/18923
skys215 2019-11-22 09:04:52
I want the exact path from you developer panel in your browser
rebory 2019-11-22 09:17:26
skys215 2019-11-22 09:04:52
I want the exact path from you developer panel in your browser

url?

rebory 2019-11-22 09:19:53
laravel_discuss-18931.jpg

skys215 2019-11-22 09:22:48
rebory 2019-11-22 08:55:07
my routes for update product

move that post route above to the product resource

skys215 2019-11-22 09:23:16
laravel_discuss-18934.jpg

rebory 2019-11-22 09:29:26
skys215 2019-11-22 09:23:16

no i used except and when product.update route name it update only it’s customize

rebory 2019-11-22 09:30:01
my project working fine in various places with version 5.7
rebory 2019-11-22 09:30:29
but now i convert my project in laravel 6.5 when i face that error
skys215 2019-11-22 09:35:13
run
php artisan route:list |grep products
and check if /admin/products/update is in the list with POST method
godwar53 2019-11-22 09:36:37
hello, anyone has made an apps that have concepts assignment form to many users?
rebory 2019-11-22 09:37:05
skys215 2019-11-22 09:35:13
run
php artisan route:list |grep products
and check if /admin/products/update is in the list with POST method

i solve this my mistake is

skys215 2019-11-22 09:37:09
assignment? you mean like homework?
rebory 2019-11-22 09:37:44
my route need
rebory 2019-11-22 09:37:59
{{ Form::open([‘url’ => route(‘product.update’, [‘productId’ => $product->id]),
godwar53 2019-11-22 09:38:03
skys215 2019-11-22 09:37:09
assignment? you mean like homework?

sorry i mean like 1 form can assign to many users

rebory 2019-11-22 09:38:24
[‘id’ => $product->id]), // this i smy mistake
godwar53 2019-11-22 09:38:25
like helpdesk ticketing apps
rebory 2019-11-22 09:38:29
thanks sky
Smith 2019-11-22 09:54:16
Please is there any books for management system
Kistlak 2019-11-22 14:00:20
I have a form which uses GET method. When I submit the form as usual I can see all the variables in the address bar. But, Now I want to customize this URL which means I want to remove the variables and show only the entered data.

What I get –
http://127.0.0.1:8000/TestReWriteForm?_token=Wktm2TZycmEROtysjNVLuDzQZWYU4zROZ8bHeOTv&username=Kistlak&district=Galle

What I want –
http://127.0.0.1:8000/TestReWriteForm/Wktm2TZycmEROtysjNVLuDzQZWYU4zROZ8bHeOTv/Kistlak/Galle

Then I tried to do this using .htaccess like below. But, nothing happens. No errors or no success.

RewriteEngine On RewriteRule ^TestReWriteForm/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+) TestReWriteForm?_token=$1&username=$2&district=$3 [L]

How can I do this using this method or any other method ??

dineshmali164 2019-11-22 14:43:30
I Want to learn Rest API in laravel please suggest me
Thanks in advance
DesolatorMagno 2019-11-22 14:59:08
rebory 2019-11-22 09:37:59
{{ Form::open([‘url’ => route(‘product.update’, [‘productId’ => $product->id]),

Yes, I was gonna say it, since version 6.0 you have to use the exact name otherwise it will just put it as a query string.

DesolatorMagno 2019-11-22 15:00:32
dineshmali164 2019-11-22 14:43:30
I Want to learn Rest API in laravel please suggest me
Thanks in advance

First read about rest API, and then try reading the doc of Laravel.

rebory 2019-11-22 16:21:15
DesolatorMagno 2019-11-22 14:59:08
Yes, I was gonna say it, since version 6.0 you have to use the exact name otherwise it will just put it as a query string.

Hmm

AlaaDq 2019-11-22 16:45:00
in laravel 6
AlaaDq 2019-11-22 16:45:15
if i want multi auth
AlaaDq 2019-11-22 16:46:40
what is better way to use
1 only middlieware
2 guards
3 use a package
AlaaDq 2019-11-22 16:49:16
first one like this
https://www.itsolutionstuff.com/post/laravel-6-multi-auth-authentication-tutorialexample.html

Laravel 7/6 Multi Auth (Authentication) TutorialItsolutionstuff
laravel 7/6 multi auth tutorial, multiple authentication in laravel 7/6, creating multiple authentication in laravel 7/6, implement multiple authentication in laravel 7/6, laravel 7/6 multiple authentication using middleware
AlaaDq 2019-11-22 16:49:44
seconde one like this
https://www.siddharthshukla.in/blog/how-to-use-multiple-authentication-guards-in-laravel-6-app/

How to use multiple authentication guards in Laravel 6 app – Siddharth ShuklaSiddharth Shukla
Prerequisites PHP >= 7.1.3 OpenSSL PHP Extension PDO PHP Extension Mbstring PHP Extension Tokenizer PHP Extension XML PHP Extension Ctype PHP Extension JSON PHP Extension Getting started Check all Prerequisites are installed in your machine. then this tutorial is already…
|