Using patch method via form-data?
How connect laravel and android studio ?
you mean write laravel with android studio?
why you want to write laravel with android studio?
as in using laravel as API?
is there an e-book which contains laravel project with step by step explanations?
how i can use google recaptcha v3 ?
How can i save the values of this checkboxes in a single cell of my database?
Why the English title if the video is in hindi?
what you already know?
I did save computer field like implode.
A user cannot bid on a order more than once. If the user clicks on the order again, he should be prompted with a response page noting the user of having

i this this is right way to store array in
multiple select box values into a single column
request()->query(‘myKey’)
with
request()->myKey ?
How do you handle POST data in your store() or update() methods? Seems like a simple question, but actually there are so many options!
Using patch method via form-data?
User::where(‘role_id’, ‘3’)
->where(‘operational_team’, ‘1’)
->with([‘test’ => function ($query) {
$query->whereMonth(‘created_at’,’!=’, Carbon::now()->month + 1);
}])
->get();
That query is doing the right thing, so is working, you are asking for all users and asking that they should bring test if it fulfill that validation,what you need is “has”, read about it.
Yes, you can
Check if hotels is a valid model
@DesolatorMagno can you modify the query with “has”? as exemple? Thanks
call api from android
How
Perhaps … Laravel in Action?
is that free?
Failed to find that
But have a look at here: https://it-ebooks-search.info/search?q=laravel
Got some free e-books
LARAVEL Books Free Downloads – IT eBooks Info Search Engine
Try Literally changing with for has.
You are right. I am pretty close. But i also need all users that don’t have a test this month
select * from users where role_id = ‘3’ and exists (select * from user_tests where users.id = user_tests.user_id`) and (`operational_team = ‘1’ and month(`created_at`) = 10)
but i need something like
select * from users where role_id = ‘3’ and exists (select * from user_tests where users.id = user_tests.user_id and month(`user_tests`.`created_at`) = 10) and (`operational_team` = ‘1’)
$userThatNeedToMakeTestThisMonth = User::where(‘role_id’, ‘3’)
->has(“test”)->where(function($q) {
$q->where(‘operational_team’, ‘1’)
->whereMonth(‘created_at’, Carbon::now()->month)
;
})->get();
how i can use google recaptcha v3 ?
->whereHas(‘test’, function ($query) {
$query->whereMonth(‘user_tests.created_at’, Carbon::now()->month);
})->where(‘operational_team’, ‘1’)->get();
You are right. I do read a lot and see a lot if videos for the same reason. There is always something new to learn

How can i save the values of this checkboxes in a single cell of my database??
what you already know?
what you already know?
I know basic of web and php fundamentals
The basis sound, like, not that much, you could start by reading here, if it seems to easy for you you can try to scan it more that doing a heavy read.
https://developer.mozilla.org/en-US/docs/Learn
After that you can read about PHP, good practices and check how good is what you already know, here is a good place to start.
https://phptherightway.com/
Once finished that you can try following a video tutorial, this one is “short” directly and tell you about Framework and how they work, it can help you to understand better Laravel
https://laracasts.com/series/php-for-beginners
Once finishes that, you can start to learn more about Laravel, and there is not better place that the ofitial documentation
https://laravel.com/docs/master
A couple of good videotutorial resource for Laravel would be those:
https://laracasts.com/series/laravel-6-from-scratch
https://coderstape.com/