← prev | next →
pranavsense 2020-12-28 12:42:58
just use $request->except(‘_token’) this will give all data in array except token
ksaipov 2020-12-28 12:46:11
ok thank you
segungreat 2020-12-28 13:35:59
May I ask, why using get and not post.
Your route is ok. And ur controller, you can get each value from $request->input(‘input name’) .
And also do some validation if necessary
2020-12-28 13:50:06
LivewireExceptionsCorruptComponentPayloadException
Livewire encountered corrupt data when trying to hydrate the [score-criteria.create] component. Ensure that the [name, id, data] of the Livewire component wasn’t tampered with between requests.
2020-12-28 13:50:22
any one know how to solve this issue
2020-12-28 13:53:50
$season_id = Session::get(‘active_season’);
$this->seasons = Season::where(‘group_id’, Session::get(‘host’))->pluck(‘title’, ‘id’);
$score_sets = ScoreSet::where(‘group_id’, ‘=’, Session::get(‘host’))
->where(‘judge_mode’, ‘vip’)
->where(‘season_id’, $season_id)
->pluck(‘name’, ‘id’)->prepend(trans(‘global.pleaseSelect’), ”);
$this->catgories=collect();
$this->tabs=collect();
$this->fields=collect();
natghi2010 2020-12-28 14:00:42
2020-12-28 13:53:50
$season_id = Session::get(‘active_season’);
$this->seasons = Season::where(‘group_id’, Session::get(‘host’))->pluck(‘title’, ‘id’);
$score_sets = ScoreSet::where(‘group_id’, ‘=’, Session::get(‘host’))
->where(‘judge_mode’, ‘vip’)
->where(‘season_id’, $season_id)
->pluck(‘name’, ‘id’)->prepend(trans(‘global.pleaseSelect’), ”);
$this->catgories=collect();
$this->tabs=collect();
$this->fields=collect();
There are 2 types of session calls
natghi2010 2020-12-28 14:01:13
session and session
2020-12-28 14:09:31
got it brother
2020-12-28 14:10:55
now its working
2020-12-28 14:11:15
anyone know how to use pluck in public properties
mohsen 2020-12-28 14:22:51

hi guys .
anyone help me ? i have problem with define validate when i,m use required_without
you,r can see myProblem in photo :
Aeonfox 2020-12-28 14:31:55
mohsen 2020-12-28 14:22:51
hi guys . anyone help me ? i have problem with define validate when i,m use required_without
you,r can see myProblem in photo :
Apparently in the first validation rule
Instead of using required without
Use this to point directly
Reguired|numeric and so on
Ahmad_Mohammad_Kouja_7 2020-12-28 16:01:26
’email’ => Rule:requiredif(function() use($request){
return !$request->has(‘phone’)})
Bhuvi100 2020-12-28 16:31:51
mohsen 2020-12-28 14:22:51
hi guys . anyone help me ? i have problem with define validate when i,m use required_without
you,r can see myProblem in photo :
Just add nullable to both
mk824 2020-12-29 00:50:00
my ajax command in cpanel dosnot work !!
Prem Soni 2020-12-29 08:24:23
If anyone have work in laravel than dm me
FRANKOBIZZY 2020-12-29 09:27:00
Hello sorry any one with laravel 8 knowledge please ☝️☝️☝️
Prem Soni 2020-12-29 09:51:12
Yes
segungreat 2020-12-29 09:52:23
Prem Soni 2020-12-29 08:24:23
If anyone have work in laravel than dm me
Yes
Deenoadmin 2020-12-29 10:43:57
I’m needing fullstack development in laravel &php
For startup in iran ..
Prem Soni 2020-12-29 10:44:38
Deenoadmin 2020-12-29 10:43:57
I’m needing fullstack development in laravel &php
For startup in iran ..
Not in anywhere else
tattien 2020-12-29 10:45:32
remote?
Bhavyakumar Panchotiya 2020-12-29 11:20:07
hi there ! can anyone tell me how to start a Laravel Framework
deveops 2020-12-29 11:25:23
Bhavyakumar Panchotiya 2020-12-29 11:20:07
hi there ! can anyone tell me how to start a Laravel Framework
Learn Composer cmd and php artisan..
Bhavyakumar Panchotiya 2020-12-29 11:25:42
2020-12-14 08:39:36
Yea ihave
hey plz also send with me in PV
Bhavyakumar Panchotiya 2020-12-29 11:33:36
deveops 2020-12-29 11:25:23
Learn Composer cmd and php artisan..
Thanks for suggestion me .ya i know about that think (Learn Composer cmd and php artisan).but i want to start a laravel at beginning you have any video tutorial regarding Laravel
HbJ23 2020-12-29 11:34:02
Hello is their any laravel dev from Pakistan. I want to integrate jazzcash and easypaisa
tattien 2020-12-29 11:38:25
Bhavyakumar Panchotiya 2020-12-29 11:33:36
Thanks for suggestion me .ya i know about that think (Learn Composer cmd and php artisan).but i want to start a laravel at beginning you have any video tutorial regarding Laravel

here
Bhavyakumar Panchotiya 2020-12-29 11:41:15
tattien 2020-12-29 11:38:25
here
you are Laravel developer i think ?
ktmsulaim 2020-12-29 12:01:58
Hi,
Any body used Laravel / Sanctum for SPA using custom guards?
Only default user guard works well, custom guard return 302 redirect!
Any help would be appreciated
StanleyMasinde 2020-12-29 12:29:40
ktmsulaim 2020-12-29 12:01:58
Hi,
Any body used Laravel / Sanctum for SPA using custom guards?
Only default user guard works well, custom guard return 302 redirect!
Any help would be appreciated
I use it with three guards. But I had to create my authentication methods and modified the RedirectIfAuthenticated middleware.
StanleyMasinde 2020-12-29 12:32:21

Something like this. The most important thing is to know that the third parameter is the Guard.
There are a 1000 ways to do this…
ktmsulaim 2020-12-29 12:52:25
@StanleyMasinde Thanks
← prev | next →