Wern Ancheta

Results 9 comments of Wern Ancheta

I'm having the same problem as well with a project started with create-react-app https://github.com/facebookincubator/create-react-app

same issue. @hugo0991 did you manage to find a solution?

@romainbriche I'm using 1.4.0

same here. it's just static

For those having the same problem. This is how I solved mine: ``` $user_products = Transaction::has('user') ->select('transactions.*') ->with(['user' => function ($query) use ($search_term) { $query->where('name', 'LIKE', "%{$search_term}%") ->orWhere('email', 'LIKE', "%{$search_term}%");...

same here. I already tried every possible option but it just wouldn't execute the job. It just says job was scheduled.

I'm also having the same problem. Was trying to insert the following: ``` {"type":"NAIL_POLISH","size":"8 ml (Pack of 25)","color":"Ladies' day","productGroup":"Beauty","itemLength":225,"itemWidth":143,"part_type":"LMPL-SET"} ``` The single quote in the `Ladies' day` is causing a...

@gabehopper where do we edit this?

hi @RajChanchal thanks for reaching out. That's something I hadn't thought about! The only solution I can think of is to implement that functionality in the server. Basically, you'll need...