There are two tables: post, foreword There are two columns in post table: id, foreword_id
I want to select all POST IDs and count the sum of the same FOREWORD ID for this POST ID.
public function foreword()
{
return $this->belongsTo('App\Foreword');
}