Home Forums LaraBid – A Laravel PHP Auction Platform Not working script Reply To: Not working script

#3175

saraos
Participant

Hi There, Why this code in AdsController is not working? I need to add these fields somewhere in the ads form.

if ($sub_category->category_type == 'cars_and_vehicles') {
               $cars_data = [
                   'ad_id'                 => $created_ad->id,
                   'transmission'            => $request->transmission,
                   'fuel_type'            => $request->fuel_type,
                   'engine_cc'            => $request->engine_cc,
                   'mileage'            => $request->mileage,
                   'build_year'            => $request->build_year.'-01-01',
               ];
               CarsVehicle::create($cars_data);
           }