Posts by Eluan B. • 1 point
2 posts
-
0
votes4
answers1367
viewsA: Save dates in the right format (Orange)
Substitute: $produto->dt_validade = $request->input('dt_validade'); For: use Carbon\Carbon; $produto->dt_validade = Carbon::createFromFormat('d-m-Y', $request->input('dt_validade'));…
-
0
votes4
answers135
viewsA: Quey Builder with IF condition in Lockable
I have worked with credit card conciliation with buyers, in my case it was with Getnet. I believe I know the purpose for this information, which in case is to seek all payments already made more…