public function getFlagTypeCount($id, $type) { return Flags::where('proposition', [$id])->where('type', $type)->count(); }
public function flag($type, $id) { return Flags::create(["type" => $type, "proposition" => $id]); }