On Laravel, why do I get an error
Invalid parameter number: parameter was not defined
I have included all parameters.
W
You're inserting all of your SQL inside of laravel's query builder select() method. You just need to utilize its other methods:
$select = [
'client_id',
'start_date',
'end_date',
'first_name',
'last_name',
'phone',
'postcode'
];
$results = \DB::table('hire')
->join('client', 'client.id', '=', 'hire.client_id')
->select($select)
->where('car_id', $car_id)
->whereBetween('start_date', [$start_date, $end_date])
->orWhereBetween('end_date', [$start_date, $end_date])
->get();
These aren't all of your parameters, but it should get you started.
If you're not looking to use the query builder, try performing a raw($expression):
$results = \DB::raw('SELECT client_id,
date_format(start_date,"%d/%m/%Y") as start_date,
date_format(end_date,"%d/%m/%Y") as end_date,
first_name, last_name, phone, postcode
FROM hire INNER JOIN client ON client.id = hire.client_id
where ((:sdate between start_date and end_date OR :edate between start_date and end_date) OR (:sdate <= start_date and end_date <= :edate)) AND car_id = :car_id', [
'sdate' => $start_date,
'edate' => $end_date,
'car_id' => $car_id
]
);