How do I pass the $id
into my $record
SQL query and what is the eloquent query as well?
I want to do this because the user_id
is the foreign key from borrows
. I want to pull data from payment_records
that have the same id
with the selected id
.
This is the show
method where I passed the id
and do the query:
public function show($id)
{
//the eloquent pull from borrows
$borrows = borrows::find($id);
$record = DB::select('SELECT `id`, `balance`, `amount_due`, `current_balance`, `created_at`, `updated_at`, `user_id` FROM `payment_records` WHERE user_id = 45');
// $borrows = DB::select('select * from borrows, payment_records where id = $id');
return view('borrows.show')->with('borrows', $borrows)->with('record',$record);
}
This is the query where I want to use the id
to compare with user_id
:
$record = DB::select('SELECT `id`, `balance`, `amount_due`, `current_balance`, `created_at`, `updated_at`, `user_id` FROM `payment_records` WHERE user_id = 45');
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
I think you are after something similar:
$users = DB::table('payment_records')
->select('id', 'balance', 'amount_due', 'current_balance', 'created_at', 'updated_at','user_id')
->where('user_id', '=', $id) // `$id` is used here
->get();
Method 2
You must use double-quote instead of single-quote
$record = DB::raw("SELECT `id`, `balance`, `amount_due`, `current_balance`, `created_at`, `updated_at`, `user_id` FROM `payment_records` WHERE user_id = $id");
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0