Is there any way to generate custom url with query parameters?

|
martianartisan 2021-01-27 07:45:37
👏 👏
getCoursesfr 2021-01-27 08:02:22
Ok
rebory 2021-01-27 09:35:20
i have 100 registered user list in user table how i an change status of all once enable or disabled
rebory 2021-01-27 09:36:12
//how to change status of all users once enable or disabled
TheFeLuM 2021-01-27 09:58:52
rebory 2021-01-27 09:36:12
//how to change status of all users once enable or disabled

User::query()->whereNotNull(‘status’)->each(function ($user){
$user->status = true;

$user->save();
});

2021-01-27 10:13:51
laravel_discuss-68161.jpg
M stuck here i have view and its route also skill giving this error
2021-01-27 10:14:02
How can i resolve this
veddishant 2021-01-27 10:17:29
2021-01-27 10:13:51
M stuck here i have view and its route also skill giving this error

Verify the name and path of view file undwr view folder

DukeKwaku 2021-01-27 10:17:35
2021-01-27 10:13:51
M stuck here i have view and its route also skill giving this error

View file not found

There’s no file in views folder with name blog_single.blade.php

TheFeLuM 2021-01-27 10:18:00
you can set it dinamic like this
2021-01-27 10:18:34
DukeKwaku 2021-01-27 10:17:35
View file not found

There’s no file in views folder with name blog_single.blade.php

I have i checked i will show you

TheFeLuM 2021-01-27 10:18:40
$status = $request->input(‘status’)
User::query()->whereNotNull(‘status’)->each(function ($user) use ($status){
$user->status = status;

$user->save();
});

2021-01-27 10:19:01
laravel_discuss-68169.jpg

veddishant 2021-01-27 10:20:00
2021-01-27 10:19:01

Check file name after blade there is space. Rename it and solved

DukeKwaku 2021-01-27 10:20:01
2021-01-27 10:19:01

Check well.. there’s a space between blade and .php

2021-01-27 10:20:41
Okay
2021-01-27 10:20:52
Thank you so much
KUNAAL MANGAL 2021-01-27 10:35:04
https://internshala.com/3-day-winternship-camp?utm_source=refer_copylink&utm_medium=10532934

Internship | Summer Internship 2022 | Internship in IndiaInternshala
13-Aug-2022 Apply to 2000+ summer internships all over India and abroad with stipend across all streams. Apply and register for free now.
bineyenatu 2021-01-27 11:17:05
How to crack licensed codeigniter project
bineyenatu 2021-01-27 13:54:58
U can
2021-01-27 15:07:28
laravel_discuss-68184.jpg

2021-01-27 15:07:29
laravel_discuss-68185.jpg

2021-01-27 15:17:02
Help plz
Kishan Thakkar 2021-01-27 15:40:45
Where is your $categories variable which is used in foreach
enes_sonmez 2021-01-27 17:11:02
Hey. Is there any way to generate custom url with query parameters?
enes_sonmez 2021-01-27 17:11:33
eg. like

url(‘/admin/login’, [‘force’ => 1])

output: …com/admin/login?force=1

veddishant 2021-01-27 18:08:55
Laravel Versions
https://laravelversions.com/

Laravel Versions
Security and bug fix timelines for all Laravel Versions
DesolatorMagno 2021-01-27 18:25:47
enes_sonmez 2021-01-27 17:11:33
eg. like

url(‘/admin/login’, [‘force’ => 1])

output: …com/admin/login?force=1

laravel_discuss-68196.jpg

2021-01-27 19:34:14
hi everyone looking out for more 2 laravel developers who have also worked with flutter to join our team
theman_behind 2021-01-27 20:15:03
2021-01-27 19:34:14
hi everyone looking out for more 2 laravel developers who have also worked with flutter to join our team

Why is everyone looking?

sohilstha 2021-01-27 21:10:39
I dont have any experience working on website for companies and want to know will there be forgotten password in admin login or not
veddishant 2021-01-27 21:11:14
sohilstha 2021-01-27 21:10:39
I dont have any experience working on website for companies and want to know will there be forgotten password in admin login or not

Yes its required in almost project

sohilstha 2021-01-27 21:12:35
veddishant 2021-01-27 21:11:14
Yes its required in almost project

Then how to make one while using jetstream i just recently try to use it so i am not quite familiar with it

sohilstha 2021-01-27 21:13:00
If anyone knows then please help me
Thanks
2021-01-27 21:17:39
https://prnt.sc/xq08la

ScreenshotLightshot
Captured with Lightshot
|