Skip to content
Advertisement

How to check array of data to where condition in laravel?

I have a book[] input field that comes from the view

JavaScript

the dd result is like

JavaScript

I want to select data from the library table where book_id match whit the above array, I wrote the below query but it gives an error like:

Type error: Argument 1 passed to IlluminateDatabaseGrammar::parameterize() must be of the type array, string given, called in D

the query is like this:

JavaScript

Advertisement

Answer

Try:

JavaScript

or

JavaScript

The issue is

'book_id', '=', $arr should be 'book_id', $arr

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement