Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

checkbox

  1. S

    use checkbox for image switch

    I have created a checkbox and want that when using all images change to other images, is such a thing possible?
  2. P

    HTML & CSS my menu button when clicked isn't opening the nav and it should be

    this is the code for my nav .nav { z-index: 1; width: 100%; background-color: red; display: block; position: absolute; top: 100%; } .nav ul { display: none; } and this is the code for my menu /* checkbox (for menu) */ .menu-icon-wrap { /* background color of...
  3. E

    PHP Laravel fetch all checkboxes include checked from pivot table with additional column

    Hello, I'm trying to fetch all my checkboxes with additional column from pivot table. Model: Stock class Stock extends Model { public function products(){ return $this->belongsToMany('App\Product','products_stock')->withPivot('qtySpent')->withTimestamps(); } }...
Back
Top Bottom