sql >> Database >  >> RDS >> Mysql

Hoe categorieën en subcategorieën te krijgen Query Builder in Laravel

Ik zou gaan voor welsprekende modellen

class Category extends Model
{
    protected $table = 'tbl_form'; // 'posts'

    public function posts()
    {
        return $this->hasMany(Post::class, 'category', 'category')->select(['title']);
    }
}
class Post extends Model
{
    protected $table = 'tbl_form'; // 'posts'

    public function category()
    {
        return $this->belongsTo(Category::class, 'category', 'category');
    }
}

En het zo ophalen:

$categories = Category::all();
dd($categories[0]->posts);



  1. Bedrag splitsen met komma in orakel

  2. Hoe ververs je het MySQL-configuratiebestand zonder opnieuw op te starten?

  3. Als er gegevens bestaan, anders... Oracle SQL gebruiken?

  4. MySQL-fout:verificatieplug-in 'caching_sha2_password' kan niet worden geladen